码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode string to integer

时间:2014-10-25 08:07:18      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   java   for   sp   div   on   

 

1, string.trim()将string中的空格去掉。

2,java 中有定义int的最大值和最小值,Integer.MAX_VALUE  Integer.MIN_VALUE

3,将char的值转换为integer的值, 就-‘0’

 

 

public class stringtoint {
    public int atoi(String str) {
        final int max = Integer.MAX_VALUE;
        final int min = Integer.MIN_VALUE;
        if (str == null) {
            return 0;
        }
        str = str.trim();
        if (str.length() == 0) {
            return 0;
        }
        int sign = 1;
        int i = 0;
        if (str.charAt(0) == ‘+‘) {
            sign = 1;
            i++;
        }
        if (str.charAt(0) == ‘-‘) {
            sign = -1;
            i++;
        }
        long temp = 0;
        for (; i < str.length(); i++) {
            if (str.charAt(i) < ‘0‘ || str.charAt(i) > ‘9‘) {
                break;
            }
            temp = temp * 10 + str.charAt(i) - ‘0‘;
            if (temp > max && sign == 1) {
                return max;
            }
        }
        if (temp * sign > max) {
            return max;
        }
        if (temp * sign < min) {
            return min;
        }
        return (int) temp * sign;
    }
}

 

leetcode string to integer

标签:style   blog   color   ar   java   for   sp   div   on   

原文地址:http://www.cnblogs.com/lilyfindjobs/p/4049659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!