LeetCode 8. String to Integer (atoi)

LeetCode 8. String to Integer (atoi

Description

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

在这里插入图片描述

Code

  • java
class Solution {
    public int myAtoi(String str) {
        boolean neg = false, pos = false, prespace = true;
        long result = 0;
        long minValue = Integer.MAX_VALUE, maxValue = Integer.MAX_VALUE;
        minValue += 1;
        for(int i = 0; i < str.length(); i++) {
            char ch = str.charAt(i);
            if(prespace && ch == ' ') {
                continue;
            } else if(ch >= '0' && ch <= '9') {
                result = result * 10 + ch - '0';
                if(neg && result >= minValue) {
                    return Integer.MIN_VALUE;
                } else if(!neg && result >= maxValue) {
                    return Integer.MAX_VALUE;
                }
            } else if(!neg && !pos && (ch == '+' || ch == '-')) {
                if(i - 1 >= 0 && str.charAt(i-1) != ' ') break;
                if(ch == '-') neg = true;
                else pos = true;
            } else {
                break;
            }
            prespace = false;
        }
        if(neg) result = -result;
        return (int)result;
    }
}
  • Others’ solution
int atoi(const char *str) {
    int sign = 1, base = 0, i = 0;
    while (str[i] == ' ') { i++; }
    if (str[i] == '-' || str[i] == '+') {
        sign = 1 - 2 * (str[i++] == '-'); 
    }
    while (str[i] >= '0' && str[i] <= '9') {
        if (base >  INT_MAX / 10 || (base == INT_MAX / 10 && str[i] - '0' > 7)) {
            if (sign == 1) return INT_MAX;
            else return INT_MIN;
        }
        base  = 10 * base + (str[i++] - '0');
    }
    return base * sign;
}

Conclusion

  • 非空格非数字且符号位不合理的地方直接break
  • 大佬的边界处理特别棒,学习了(虽然上一题就应该记住hhh
if (base >  INT_MAX / 10 || (base == INT_MAX / 10 && str[i] - '0' > 7)) {
     if (sign == 1) return INT_MAX;
     else return INT_MIN;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值