题解 | #将字符串转化为整数#

将字符串转化为整数

http://www.nowcoder.com/practice/44d8c152c38f43a1b10e168018dcc13f

import java.util.*;


public class Solution {
    /**
     * 
     * @param str string字符串 
     * @return int整型
     */
    public int atoi (String str) {
        // write code here
        int sign = 1;
        boolean has = false;
        int ans =0, pop = 0;
        for(int i = 0; i < str.length(); ++i) {
            if(str.charAt(i) == '-' && !has) {
                sign = -1;
                has = true;
                continue;
            }
            if(str.charAt(i) == '+' && !has) {
                sign = 1;
                has = true;
                continue;
            }
            if(str.charAt(i) == ' ' && !has) {
                continue;
            }
            if(str.charAt(i) >= '0' && str.charAt(i) <= '9') {
                has = true;
                pop = str.charAt(i) - '0';
                if(ans * sign > Integer.MAX_VALUE / 10 || ans * sign == Integer.MAX_VALUE / 10 && pop * sign > 7) {
                    return Integer.MAX_VALUE;
                }
                if(ans * sign < Integer.MIN_VALUE / 10 || ans * sign == Integer.MIN_VALUE / 10 && pop * sign < -8) {
                    return Integer.MIN_VALUE;
                }
                ans = ans * 10 + pop;
            }else{
                return ans * sign;
            }
        }
        return ans * sign;
    }
}
全部评论

相关推荐

10-05 23:02
东北大学 Java
我说句实话啊:那时候看三个月培训班视频,随便做个项目背点八股,都能说3 40w是侮辱价
点赞 评论 收藏
分享
11-09 11:01
济南大学 Java
Java抽象带篮子:外卖项目真得美化一下,可以看看我的详细的外卖话术帖子
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务