atoi
Hint:
Notes:
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
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.
answer:
public:
int myAtoi(string str) {
int length = str.length();
if(length == 0)
return 0;
double result = 0.0f, i = 0;
int flag = 1;
while((i < length) && (str[i] == ' '))
i ++;
if(i >= length) return 0;
if(str[i] == '+'){
flag = 1;
}
else if(str[i] == '-'){
flag = -1;
}
else if(str[i] < '0' || str[i] > '9') {
return 0;
}
else {
flag = 1;
result += str[i] - '0';
}
i ++;
while(i < length && str[i] >= '0' && str[i] <= '9'){
result = result * 10 + str[i] - '0';
if(result * flag > INT_MAX) {
result = INT_MAX;
return result;
}
if(result * flag < INT_MIN){
result = INT_MIN;
return result;
}
i ++;
}
return result * flag;
}
};