zoukankan      html  css  js  c++  java
  • 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.

    Update (2015-02-10):
    The signature of the C++ function had been updated. If you still see your function signature accepts a const char * argument, please click the reload button  to reset your code definition.

    spoilers alert... click to show requirements for atoi.

    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.

    public static int myAtoi(String str) {
            double result = 0;//long不能通过
            boolean flag = false;
            str = str.trim();//去掉空格
            char[] chstr = str.toCharArray();//将字符串保存为数组
            if (str.equals("")){
                return 0;
            }
            if (chstr[0]=='+'||chstr[0]=='-'){
                flag = true;
            }
            for (int i=0;i<chstr.length;i++){
                if (flag&&i==0){
                    continue;
                }
                if (Character.isDigit(chstr[i])){
                    result=result*10+chstr[i]-'0';
                }
                else{
                    break;
                }
            }
            if (flag&&chstr[0]=='-'){
                result = 0-result;
            }
            if (result>Integer.MAX_VALUE){
                return Integer.MAX_VALUE;
            }
            if (result<Integer.MIN_VALUE){
                return Integer.MIN_VALUE;
            }
            return (int)result;
        }
    
  • 相关阅读:
    bzoj3816 矩阵变换
    bzoj5029 贴小广告
    【BZOJ-1208】宠物收养所 Splay
    【BZOJ-2879】美食节 最小费用最大流 + 动态建图
    【BZOJ-1984】月下“毛景树” 树链剖分
    写在SDOI2016Round1前的To Do List
    BZOJ solve 100 纪念
    BZOJ-1143&&BZOJ-2718 祭祀river&&毕业旅行 最长反链(Floyed传递闭包+二分图匹配)
    【SDOI2009】解题汇总
    BZOJ-1879 Bill的挑战 状态压缩DP
  • 原文地址:https://www.cnblogs.com/bingo2-here/p/7365674.html
Copyright © 2011-2022 走看看