剑指offer,将字符串转化成整数

时间:2022-12-30 22:29:51
  • 这道题解决思路就是一位一位去算,就像十进制那样
  • 真正的坑点在于有一组数据 “”“”这个组,该怎么处理,因为好像,到”“这样,就被停住了,传到函数的时候。字符串是以“”为分割的。so在开头加一个判断就可以了
public class Solution {
    public int StrToInt(String str) {
        if(str.length() == 0 ) return 0;
        boolean flag = true;
        int fff = 0;
        int len = str.length();
        int result = 0 , tmp = 1;
        if(str.charAt(0) == '+') {
            fff = 1;
        }else if(str.charAt(0) == '-'){
            fff = -1;
        }
        for(int i = len - 1 ; i >= (0 + Math.abs(fff)) ; i--) {
            if(str.charAt(i) < '0' || str.charAt(i) > '9') flag = false;
            result += (tmp * (str.charAt(i) - '0'));
            tmp *= 10;
        }
        if(flag == false) return 0;
        if(fff != 0) result *= fff;
        return result;
    }

    public static void main(String[] args) {
        Solution xxx = new Solution();

    }
}