zoukankan      html  css  js  c++  java
  • 【LeetCode】8. String to Integer (atoi) 字符串转整数

    题目:

      Implement atoi to convert a string to an integer.

    Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases.

    Notes: It is intended for this problem to be specified vaguely (ie, no given input specs). You are responsible to gather all the input requirements up front.

    Requirements for 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. If the correct value is out of the range of representable values, INT_MAX (2147483647) or INT_MIN (-2147483648) is returned.

    思路:

      该题目是说将string类型的字符串转换成整型数据,类似于C++库里的atoi函数,解决该题目的关键在于两个方面:
      (1)字符串格式的合法判断
      (2)转换结果的溢出判断
    public class Solution {
        public int myAtoi(String str) {
            str=str.trim();
            char[] arr=str.toCharArray();
            if(arr.length==0){
                return 0;
            }
            
            int i=0;
            boolean symbol=true;
            if(arr[i]=='-'){
                symbol=false;
                i++;
            }else if(arr[i]=='+'){
                i++;
            }
        
            
            long MAX_VALUE=Integer.MAX_VALUE;
            long MIN_VALUE=Integer.MIN_VALUE;
            long num=0;
            for(int j=i;j<arr.length;j++){
                if(arr[j]>='0'&&arr[j]<='9'){
                    num=num*10+arr[j]-'0';
                }else{
                    break;
                }
                
                if(!symbol&&(0-num<MIN_VALUE)){
                    return Integer.MIN_VALUE;
                }else if(symbol&&(num>MAX_VALUE)){
                    return Integer.MAX_VALUE;
                }
            }
            
            return symbol?new Long(num).intValue():new Long(0-num).intValue();
        }
    }
  • 相关阅读:
    spring的@Transactional注解详细用法
    C#中对string与string[]的初步操作
    响应式下的雪碧图解决方案 - 活用background-size / background-position
    background-position 详解
    sass学习笔记
    微信小程序实操-image height:auto问题,url地址报错,“不在以下合法域名列表中”问题等
    如何开发一个微信小程序
    括号生成 回溯算法 递归 深度优先遍历 剪枝
    前K个高频元素 数字型 Hash表解决
    寻找重复的数 hash表
  • 原文地址:https://www.cnblogs.com/zhstudy/p/6001442.html
Copyright © 2011-2022 走看看