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.
**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.**
解题思路:考虑边界问题依旧是关键,如空格,非数字字符,空字符串,以及越界问题。
代码如下:
class Solution {
public:
int myAtoi(string str) {
int i=0,flag=0; //flag=0 is positive number flag=1 is negative number
for(;i<str.length()&&str[i]==' ';i++); //all the str[i] is blank
if(i==str.length())
return 0;
if(str[i]=='-'){
flag=1;
i++;
}else if(str[i]=='+'){
flag=0;
i++;
}else if(str[i]>='0'&&str[i]<='9'){
flag=0;
}else{
return 0;
}
long long sum=0;
long intMAX=0x07fffffff;
long intMIN=0x080000000;
for(;i<str.length()&&str[i]>='0'&&str[i]<='9';i++){
sum=sum*10+str[i]-'0'; //在循环中提前做出判断
if(flag==0&&sum>intMAX){
return intMAX;
}
if(flag==1&&sum>intMIN){
return -intMIN;
}
}
if(flag==1)
sum=-sum;
return sum;
}
};
本文介绍了一个atoi函数的实现方法,该函数能够将输入的字符串转换为整数。解析了如何处理字符串中的空白字符、正负号以及数字字符,并确保在遇到非数字字符时正确终止转换过程。

被折叠的 条评论
为什么被折叠?



