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;
        }
    
  • 相关阅读:
    oracle连接命令
    oracle Wrap加密
    oracle copy
    oracle loader
    oracle一些常见的问题
    python-cn(华蟒用户组,CPyUG 邮件列表)
    代理服务器验证工具
    多线程中的信号/槽
    【多线程】python界面阻塞,白屏,not responding解决的简单例子
    vi命令
  • 原文地址:https://www.cnblogs.com/bingo2-here/p/7365674.html
Copyright © 2011-2022 走看看