力扣刷题8.字符串变整形(Java)

英文题目

String to Integer (atoi)
Implement atoi which converts a string to an integer.
实现 atoi 能够使 字符串变为 整形
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.
该字符串除了有效的整数部分之后也可能会存在多余的字符,这些字符可以被忽略,它们对于函数不应该造成影响。

注意:假如该字符串中的第一个非空格字符不是一个有效整数字符、字符串为空或字符串仅包含空白字符时,则你的函数不需要进行转换。

在任何情况下,若函数不能进行有效的转换时,请返回 0。
说明:

假设我们的环境只能存储 32 位大小的有符号整数,那么其数值范围为 [−2^31, 2^31 − 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 (−2^31) 。

思路

跟第7题思路一样

  1. 如果是数字就 现在结果*10+ 下一个数字 (注意判断是否超最大最小值) -2147483648 2147483647
  2. 判断每个字符是否是减号 如果是下一个还是数字就输出
  3. 是否是数字 >=‘0’ <=‘9’
    特殊 --00000000000

解答

class Solution {
    public int myAtoi(String str) {
        if(str == null || str.length() < 1) return 0;
        int i = 0;
        int result = 0;
        int flag = 0;
        //处理空格
        while(i < str.length() && str.charAt(i) == ' '){
           i++; 
        }
        //处理 -
        if(i < str.length() && str.charAt(i) == '-'){
            result = 0;
            flag = -1;
        }
        if(i < str.length() && str.charAt(i) == '+'){
            result = 0;
            flag = 1;
        }
        //处理和 符号同一级的数 
        if(i < str.length() && str.charAt(i) >='0' && str.charAt(i) <= '9' ){
            result = str.charAt(i) - '0';
            flag = 1;
        }
        i++;
        if(flag == 0){
            return 0;
        }
        while(i < str.length()  && str.charAt(i) >='0' && str.charAt(i) <= '9'){
            if(result * flag > Integer.MAX_VALUE / 10 || (result * flag == Integer.MAX_VALUE / 10 &&  (str.charAt(i) - '0') > 7)) return Integer.MAX_VALUE;
            if(result * flag < Integer.MIN_VALUE / 10 || (result * flag == Integer.MIN_VALUE / 10 && (str.charAt(i) - '0') > 8)) return Integer.MIN_VALUE;
            result = result*10 + (str.charAt(i) - '0');
            i++;
        }
        return result * flag;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值