8 String to 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: [−231, 231 − 1]. If the numerical value is out of the range of representable values, INT_MAX (231 − 1) or INT_MIN (−231) is returned.
1 | Example 1: |
Problem Analysis
Parse the conditions:
- Discard whitespace until we faced the first non-whitespaces characters. (A string might contians all white spcaes)
- Prase +/- for the first characters and assign to sign variable.
- Start to look at the number.
- -1. Meet invalid character
- -2. Meet 0, and we should skip all 0 as the beginning of number
- -3. Meet number and we start to calculate the number
- Parse the number:
- -1. Check if we meet invlaid character inside the number
- -2. Check if the current number might exceed largest or smallest integer.
(Integer.MAX_VALUE - digit) / 10 < sum)
- -3. Keep adding the numebr into sum variable
- Return the value with correct sign.
Algorithm Analysis
Just following the instructions to construct this algorithm.
Time Complexity Analysis
- Time: O(n)
Code Implementation
1 | class Solution |