8. String to Integer (Atoi)
Implement atoi
which converts a string to an integer.
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.
Note:
Only the space character
' '
is considered as whitespace character.Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−2^31, 2^31 − 1]. If the numerical value is out of the range of representable values, INT_MAX (2^31 − 1) or INT_MIN (−2^31) is returned.
Example 1:
Example 2:
Example 3:
Example 4:
Example 5:
Thoughts:
First jump all the ' ' until if there is a sign ('+' or '-'), then for all the numbers:
check if current value is val > MAX_INT/10 or val == MAX_INT/10 and current int value is > 7 (2147483647 is the MAXINT; and -2147483648 is the INT_MIN). If sign is 1 output MAXINT; otherwise output MININT
update the value by val = 10 * val + (str[i] -'0');
return sign * base
Code
Last updated
Was this helpful?