做这道题刚才踩了第7题留下的坑,233,加深了对第7题理解。也学会了对数组越界的一种判断方法
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: [−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.
Example 1:
Input: "42" Output: 42
Example 2:
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.
solution:(这题没啥好说的,newResult<0||(newResult-(ch - '0'))/10 !=result这种判断数组越界的方法学会就okay了)
class Solution {
public int myAtoi(String str) {
int result=0;
char ch;
int posOrNeg = 1;
str = str.trim();
int len=str.length();
int i =0;
if(len>1){
ch=str.charAt(0);
if(ch=='-'){
posOrNeg=-1;
i++;
}
if(ch=='+'){
i++;
}
}
for( ;i<len;i++){
ch =str.charAt(i);
if(ch<='9'&&ch>='0'){
int newResult = result*10+(ch-'0');
if(newResult<0||(newResult-(ch - '0'))/10 !=result)
return posOrNeg ==1 ? Integer.MAX_VALUE : Integer.MIN_VALUE;
else{
result = newResult;
}
}else{
break;
}
}
return result*posOrNeg;
}
}
本文详细探讨了如何将字符串转换为整数的atoi函数实现,包括处理空格、正负号、数字字符以及如何判断数值溢出。通过具体示例阐述了函数的工作原理,并提供了一种有效的数组越界判断方法。
509

被折叠的 条评论
为什么被折叠?



