8. String to Integer (atoi)(将输入的字符串转化为整数)

来源:互联网 发布:淘宝上购买飞行燃料 编辑:程序博客网 时间:2024/06/07 07:49

官网

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.

spoilers alert… click to show requirements for atoi.

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." +123" 输出 123
  • 1." -123abcde" 输出 -123
  • 1." +abc123" 输出 0
  • 1." " 输出 0

解题思路

1.先去掉前面的空格,然后看有没有正负号,然后输出数字直到遇到非数字则停止。

AC代码(java)

package test;class Solution{    public int atoi(String str) {        str = str.trim();        if(str.isEmpty()){            return 0;        }        int flag = 1;        int i =0;        if(str.charAt(i)=='+'){            i++;        }else if(str.charAt(i)=='-'){            flag = -1;            i++;        }        //提防result超出int范围        double result = 0.0;        while(i<str.length()&&str.charAt(i)<='9'&&str.charAt(i)>='0'){            result = result*10 + str.charAt(i) - '0';            i++;        }        result = flag*result;        if(result>Integer.MAX_VALUE){            return Integer.MAX_VALUE;        }        if(result<Integer.MIN_VALUE){            return Integer.MIN_VALUE;        }        return (int)result;    }}public class test {public  static void main(String[] args){    String a = new String("  -0000123");    Solution b = new Solution();    int c = b.atoi(a);    System.out.println(c);}}
0 0
原创粉丝点击