String to Integer (atoi)

Implement atoi to convert a string to an integer.

Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases.

Notes: It is intended for this problem to be specified vaguely (ie, no given input specs). You are responsible to gather all the input requirements up front.

Update (2015-02-10):

The signature of the C++ function had been updated. If you still see your function signature accepts a const
char *
 argument, please click the reload button  to reset your code definition.

本文简单点说就是把字符串里的数字转成整形,可是题目有几点要求:

Requirements
for atoi:

The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus sign followed by as many numerical
digits as possible, and interprets them as a numerical value.

The string can contain additional characters after those that form the integral number, which are ignored and have no effect on the behavior of this function.

If the first sequence of non-whitespace characters in str is not a valid integral number, or if no such sequence exists
because either str is empty or it contains only whitespace characters, no conversion is performed.

If no valid conversion could be performed, a zero value is returned. If the correct value is out of the range of representable values, INT_MAX (2147483647) or INT_MIN (-2147483648) is returned.

翻译大概意思是:

1、先丢弃字符串前面的空白字符知道扫到第一个非空白字符;然后将一个合法的数值的字符串以及其前面的一个正负号一同装换为int。

2、该合法数值子字符串中或后,可能包括其它非数值的特殊字符,忽略这些子字符串;

3、若第一个非空子字符串非护法的整型数值。或根本就没有,甚至该字符串可能都是特殊字符或空字符,则不作转换0;

4、若没有有效地转换,则返回0,若有返回数值超出边界,则返回边界值。

一、思路:

       本题尽管属于比較简单的级别。可是在没考虑好所有可能的情况下。总是会出现遗漏一些细节的结果,导致提交后总是有新的意外情况出现。如:“     +-15651”、“    *    6644”这些首次出现的字符串不能构成数字的都是属于不合法的情况。直接返回0。思路例如以下:先扫描到第一个非空字符,再考虑两种情况,第一种是第一个非空字符是'+'或'-'号,若是则继续推断接下来的字符是否为数字。不是则不合法。第二种是第一个非空字符是数字。那可继续以扫描数字的方式进行转换。除了以上两种情况,其它都为不合法。

二、Java程序

public class Solution {
public int myAtoi(String str) {
int sl = str.length();
int index=0;
char tempc; //获取字符
boolean flag = false; //负数标志
int firstI=-1;
long re=0; if(sl<=0)
return 0;
//1. 開始至第一个非空字符
while(str.charAt(index)==' ')
{
index++;
if(index>=sl) //超过字符串长度
return 0;
} //2. 扫到第一个非空字符,推断是否合法
tempc = str.charAt(index);
//2.1 若是+-或数值则进行,否则则返回0
if(tempc=='-'||tempc=='+'||(tempc<='9'&&tempc>='0'))
{
//2.2 若是数值则跳出推断
if((tempc<='9'&&tempc>='0'))
{
}else //2.3 若是+-号,则推断接下来的是否为数值
{
if(tempc=='-') flag = true;//2.3.1 若是-号。则设置标志位 index++; //2.4 若是+-号,则推断下一位是不是数值,是则合法,不是则返回0
tempc = str.charAt(index);
if((tempc<='9'&&tempc>='0'))
{}else
{
return 0;
}
} }else //2.1 若是+-或数值则进行,否则则跳出
{
return 0;
} //3. 開始扫描有效数字
while(index<sl)
{
tempc = str.charAt(index);
if(tempc<='9'&&tempc>='0')
{
re = re*10 + (str.charAt(index)-'0');
if(re>=Integer.MAX_VALUE||re<=Integer.MIN_VALUE)
break;
}else
{
break;
}
index++;
} if(flag==true)
{ re=-re;
re = re<Integer.MIN_VALUE? Integer.MIN_VALUE:re;
}else
{
re = re>Integer.MAX_VALUE?Integer.MAX_VALUE:re;
}
return (int)re;
}
}

LeetCode【8】. String to Integer (atoi) --java实现的更多相关文章

  1. Leetcode 8. String to Integer (atoi) atoi函数实现 (字符串)

    Leetcode 8. String to Integer (atoi) atoi函数实现 (字符串) 题目描述 实现atoi函数,将一个字符串转化为数字 测试样例 Input: "42&q ...

  2. leetcode第八题 String to Integer (atoi) (java)

    String to Integer (atoi) time=272ms   accepted 需考虑各种可能出现的情况 public class Solution { public int atoi( ...

  3. leetcode day6 -- String to Integer (atoi) &amp;&amp; Best Time to Buy and Sell Stock I II III

    1.  String to Integer (atoi) Implement atoi to convert a string to an integer. Hint: Carefully con ...

  4. 【leetcode】String to Integer (atoi)

    String to Integer (atoi) Implement atoi to convert a string to an integer. Hint: Carefully consider ...

  5. [leetcode] 8. String to Integer (atoi) (Medium)

    实现字符串转整形数字 遵循几个规则: 1. 函数首先丢弃尽可能多的空格字符,直到找到第一个非空格字符. 2. 此时取初始加号或减号. 3. 后面跟着尽可能多的数字,并将它们解释为一个数值. 4. 字符 ...

  6. Leetcode 8. String to Integer (atoi)(模拟题,水)

    8. String to Integer (atoi) Medium Implement atoi which converts a string to an integer. The functio ...

  7. [LeetCode][Python]String to Integer (atoi)

    # -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'https://oj.leetcode.com/problems/string- ...

  8. 【JAVA、C++】 LeetCode 008 String to Integer (atoi)

    Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. ...

  9. Java [leetcode 8] String to Integer (atoi)

    问题描述: Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input ...

随机推荐

  1. MyBatis学习总结(2)——使用MyBatis对表执行CRUD操作

    一.使用MyBatis对表执行CRUD操作--基于XML的实现 1.定义sql映射xml文件 userMapper.xml文件的内容如下: <?xml version="1.0&quo ...

  2. open函数详解

    转载:https://www.cnblogs.com/frank-yxs/p/5925574.html open函数用来在进程中打开文件,如果成功则返回一个文件描述符fd. ============= ...

  3. POSIX 线程编程(一)简介

    简介 在共享内存的多处理器结构中,可以用线程来实现并行.对于UNIX系统, IEEE POSIX 1003.1c标准规定了C语言线程编程接口的标准.这份标准的实现就是POSIX threads, 或者 ...

  4. LintCode-交叉字符串

    给出三个字符串:s1.s2.s3,推断s3是否由s1和s2交叉构成. 您在真实的面试中是否遇到过这个题? Yes 例子 比方 s1 = "aabcc" s2 = "dbb ...

  5. 百度地图-----&gt;地图类型、定位模式、实时交通、我的位置、加入覆盖物、覆盖物详情及提示

    在百度地图开发平台 http://developer.baidu.com/map/index.php? title=androidsdk 进行创建应用,获取应用的AK,在进行下载BaiduLBS_An ...

  6. JAVA设计模式之【状态模式】

    状态模式 水.固态.气态.液态 账户.正常状态.透支状态.受限状态 状态模式中,用一个状态类来分散冗长的条件语句,让系统有灵活性和可扩展性 状态模式用于解决系统中复杂对象的状态转换以及不同状态下行为的 ...

  7. event内存泄漏

    C#内存泄漏--event内存泄漏 内存泄漏是指:当一块内存被分配后,被丢弃,没有任何实例指针指向这块内存, 并且这块内存不会被GC视为垃圾进行回收.这块内存会一直存在,直到程序退出.C#是托管型代码 ...

  8. JavaScript学习记录三

    title: JavaScript学习记录三 toc: true date: 2018-09-14 23:51:22 --<JavaScript高级程序设计(第2版)>学习笔记 要多查阅M ...

  9. WPF Template

    ControlTemplate ControlTemplate:用于定义控件的结构和外观,这样可以将控件外观与控件功能分离开. 在xaml中ControlTemplate通常配置到Style中,通过S ...

  10. Servlet基础(一)

    JavaEE:企业级开发技术 <一.基础概念>j2ee:jdk1.1--1.4   ----->>    j2ee1.1   1.2   javaee:jdk--5,6,7   ...