leetcode刷题——将给定字符串转换输出为数字

字符串转整数(atoi)
实现 atoi,将字符串转为整数。

在找到第一个非空字符之前,需要移除掉字符串中的空格字符。如果第一个非空字符是正号或负号,选取该符号,并将其与后面尽可能多的连续的数字组合起来,这部分字符即为整数的值。如果第一个非空字符是数字,则直接将其与之后连续的数字字符组合起来,形成整数。

字符串可以在形成整数的字符后面包括多余的字符,这些字符可以被忽略,它们对于函数没有影响。

当字符串中的第一个非空字符序列不是个有效的整数;或字符串为空;或字符串仅包含空白字符时,则不进行转换。

若函数不能执行有效的转换,返回 0。

说明:

假设我们的环境只能存储 32 位有符号整数,其数值范围是 [−231, 231 − 1]。如果数值超过可表示的范围,则返回 INT_MAX (231 − 1) 或 INT_MIN (−231) 。

示例 1:

输入: “42”
输出: 42
示例 2:

输入: " -42"
输出: -42
解释: 第一个非空白字符为 ‘-’, 它是一个负号。
我们尽可能将负号与后面所有连续出现的数字组合起来,最后得到 -42 。
示例 3:

输入: “4193 with words”
输出: 4193
解释: 转换截止于数字 ‘3’ ,因为它的下一个字符不为数字。
示例 4:

输入: “words and 987”
输出: 0
解释: 第一个非空字符是 ‘w’, 但它不是数字或正、负号。
因此无法执行有效的转换。
示例 5:

输入: “-91283472332”
输出: -2147483648
解释: 数字 “-91283472332” 超过 32 位有符号整数范围。
因此返回 INT_MIN (−231) 。

-----------------------------------------------------------------------------------------------------------------------------------------

以下是第一种思路:

明确各类终止处理过程的终止条件,如首字符为非数字及+-号、非首字符出现非数字、以及空串或null。

 

public class Atoi {
    public static void main(String[] args) {
        Solution solution = new Solution();
    }
}

class Solution {
    public int myAtoi(String str) {
        //字符串为null或空串
        if (str == null||str == "") {
            return 0;
        }
        int INT_MAX = Integer.MAX_VALUE;
        int INT_MIN = Integer.MIN_VALUE;
        long value = 0;
        int isPostive = 1;//isPostive为1表示值为正
        boolean state = false;//false代表尚未读到数字
        int i = 0;
        while (i < str.length() && str.charAt(i) == ' ') {
            i++;
        }
        for (int j = i; j < str.length(); j++) {
            if (state == false && !Character.isDigit(str.charAt(j)) &&
                    str.charAt(j) != '-' && str.charAt(j) != '+') {
                return 0;
            }
            
            if (state == true && !Character.isDigit(str.charAt(j))) {
                break;
            }
            
            if (Character.isDigit(str.charAt(j))) {
                if (state == false) {
                    state = true;
                    value = (str.charAt(j) - '0');
                    continue;
                }
                value = isPostive * ((Math.abs(value * 10) + (str.charAt(j) - '0')));
                if (value >= INT_MAX) {
                    value = INT_MAX;
                    return (int)value;
                } else if (value <= INT_MIN) {
                    value = INT_MIN;
                    return (int)value;
                }
                continue;
            }
            
            if (state == false && str.charAt(j) == '-') {
                state = true;
                value = -value;
                isPostive = -1;
                continue;
            }
            
            if (state == false && str.charAt(j) == '+') {
                state = true;
                continue;
            }
        }
        return (int)value;
    }

}

专注该做的事。做的越少,bug越少。

另外一种思路(通过明确首字符和后续字符分别进行不同处理):

public class Atoi {
    public static void main(String[] args) {
        Solution solution = new Solution();
    }
}

class Solution {
    public int myAtoi(String s) {
        int state = 0;
        long sum = 0;
        boolean isPositive = true;
        for (int index = 0; index < s.length(); index++) {
            final char current = s.charAt(index);
            switch (state) {
                case 0:
                    if (current == '-') {
                        isPositive = false;
                        state = 1;
                    } else if (current == '+') {
                        state = 1;
                    } else if (current >= '0' && current <= '9') {
                        state = 1;
                        index = index - 1;
                    }else if(current==' '){
                        continue;
                    } else {
                        return 0;
                    }
                    break;
                case 1:
                    if (current >= '0' && current <= '9') {
                        sum = sum * 10 + (current - '0');
                        if (isPositive && sum >= Integer.MAX_VALUE) {
                            sum = Integer.MAX_VALUE;
                            return ((int)sum);
                        } else if (!isPositive && sum * -1 <= Integer.MIN_VALUE) {
                            sum = Integer.MIN_VALUE;
                            return ((int)sum);
                        }
                    } else {
                        if (!isPositive) {
                            sum = sum * -1;
                        }
                        return ((int)sum);
                    }
                    break;
            }
        }
        if (!isPositive) {
            sum = sum * -1;
        }
        return ((int)sum);
    }
}

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值