• 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;
        }
    
  • 相关阅读:
    HDU 1082 Matrix Chain Multiplication
    HDU 1086 You can Solve a Geometry Problem too
    HDU 1099 Lottery
    jquery正则检测字符串表达式的合法性
    Like语句中的注入
    HDU 1372 Knight Moves
    HDU 1253 胜利大逃亡
    HDU 1242 Rescue
    我有新博客啦
    水平越权与垂直越权
  • 原文地址:https://www.cnblogs.com/bingo2-here/p/7365674.html
Copyright © 2020-2023  润新知