More:【目錄】LeetCode Java實現html
https://leetcode.com/problems/string-to-integer-atoi/java
Implement atoi
which converts a string to an integer.git
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.ide
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.post
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.ui
If no valid conversion could be performed, a zero value is returned.this
Note:spa
' '
is considered as whitespace character.Example 1:code
Input: "42" Output: 42
Example 2:orm
Input: " -42" Output: -42 Explanation: The first non-whitespace character is '-', which is the minus sign. Then take as many numerical digits as possible, which gets 42.
Example 3:
Input: "4193 with words" Output: 4193 Explanation: Conversion stops at digit '3' as the next character is not a numerical digit.
Example 4:
Input: "words and 987" Output: 0 Explanation: The first non-whitespace character is 'w', which is not a numerical digit or a +/- sign. Therefore no valid conversion could be performed.
Example 5:
Input: "-91283472332" Output: -2147483648 Explanation: The number "-91283472332" is out of the range of a 32-bit signed integer. Thefore INT_MIN (−231) is returned.
Scan from index=0 to the end of the String to get the number. (num=num*10+digit)
The situations that are going to overflow ( range:[–2147483648, 2147483647 ] ):
1) if current num>214748364, it's going to overflow
2) if current num=214748364, and digit>=8. it's going to overflow.
3) if current num is minus, then it's similar to above;
private static final int maxDiv10 =Integer.MAX_VALUE/10; public static int myAtoi(String str) { if(str==null || str.length()==0) return 0; int i=0; int n=str.length(); while(i<n && str.charAt(i)==' ') i++; boolean isNegative=false; if(i<n && str.charAt(i)=='+'){ i++; }else if(i<n && str.charAt(i)=='-'){ isNegative=true; i++; } int num=0; while(i<n && Character.isDigit(str.charAt(i))){ int digit = Character.getNumericValue(str.charAt(i)); if(num>maxDiv10 || (num==maxDiv10 && digit>=8) ) return isNegative? Integer.MIN_VALUE : Integer.MAX_VALUE; num*=10; num+=digit; i++; } if(isNegative) return -num; return num; }
Time complexity : O(n)
Space complexity : O(1)
1. It's important to learn how to deal with overflow;
2. Have a commond of:
Character.isDigit(c)
Character.getNumericValue(c)
Integer.MAX_VALUE
Integer.MIN_VALUE
More:【目錄】LeetCode Java實現