剑指 Offer 67. 把字符串转换成整数

题目

写一个函数 StrToInt,实现把字符串转换成整数这个功能。不能使用 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) 。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/ba-zi-fu-chuan-zhuan-huan-cheng-zheng-shu-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

题解

法一

  1. 去掉首尾空格
  2. 第一个要么是 +/- 符号,要么不是
  3. 遍历字符串,如果是数字则继续,不是数字返回已经转换的部分即可,
  4. 如果越界,那么判断大小和长度。
class Solution {
    public int strToInt(String str) {
        char[] arr = str.trim().toCharArray();
        if (arr.length == 0) {
            return 0;
        }
        
        int MAX = Integer.MAX_VALUE / 10;

        boolean isPositive = true;
        int res = 0;
        int i = 0;
        
        if (arr[0] == '+') {
            i = 1;
        } else if (arr[0] == '-') {
            isPositive = false;
            i = 1;
        }
        
        for (; i < arr.length; i++) {
            if (arr[i] >= 48 && arr[i] <= 58) {
                if (res > MAX || res == MAX && arr[i] - 48 > 7) {
                    return isPositive?
                            Integer.MAX_VALUE:
                            Integer.MIN_VALUE;
                }
                res = res * 10 + arr[i] - 48; 
            } else {
                break;
            }
        }
        return isPositive? res: -res;
    }
}

法二

之前学了有限状态自动机,想着也能用,我自己先用的这种方式,想着也算是练手了。

在这里插入图片描述

class Solution {
    private static final int[][] states = {
            {0,  1,  2},
            {-2, -2, 2},
            {-1, -1, 2},
        };
    private static final int MAX = Integer.MAX_VALUE / 10;
    
    public int strToInt(String str) {
        char[] arr = str.toCharArray();
        
        boolean isPositive = true;
        int res = 0;
        
        int index = 0;
        
        for (char s : arr) {
            int n = make(s);
            
            if (n == -1) {
                break;
            }
            
            index = states[index][n];
            if (index == -1) {
                break;
            }
            
            switch(index) {
                case -2: return 0;
                case 1: 
                    isPositive = isAddSign(s);break;
                case 2: 
                    if (res > MAX || res == MAX && s - 48 > 7) {
                        return isPositive?
                                Integer.MAX_VALUE:
                                Integer.MIN_VALUE;
                    }
                    res = res * 10 + s - 48;
            }   
        }
        return isPositive?
                res:
                -res;
    }
    
    private boolean isAddSign(char s) {
        return s == '+' ?
                true:
                false;
    }
    
    private int make(int s) {
       switch(s) {
            case ' ': return 0;
            case '+': 
            case '-': return 1;
            default:
                if (s >= 48 && s <= 58) {
                    return 2;
                };
        }
        
        return -1;
    }
}

猜你喜欢

转载自blog.csdn.net/qq_42254247/article/details/107374666
今日推荐