Problem
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:
1 |
|
Example 2:
1 |
|
Example 3:
1 |
|
Example 4:
1 |
|
Example 5:
1 |
|
Explanation
-
First trim the input string. Check if the string’s length is 0 or string is NULL, return 0 as the result.
-
Initialize index be 0, check the first character, if it’s
+
or-
character, then update theflag
be 1 or -1, and increase the index. -
Initialize
res
as double first, while the index is less than the length and the current character is a number, we update the result number beres = res * 10 + str.charAt(i) - '0'
. -
Check if the
res*flag
number is equal or greater than the maximum integer or less or equal to the minimum integer, return the max integer or min integer accordingly. Otherwise, returnres*flag
as the result.
Solution
1 |
|