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;
        }
    
  • 相关阅读:
    再看数据库——(1)存储过程
    Android nomedia 避免图片等资源泄露在系统图库其中
    南邮JAVA程序设计实验1 综合图形界面程序设计
    【零基础入门学习Python笔记013】元祖:戴上了枷锁的列表
    关于部门后端所有转向java前初步设想
    Windows环境下msysgit安装git flow
    UI_UISlider控件
    名不符实的读写锁
    js+ canvas 实现人物走动
    Android HandlerThread 源代码分析
  • 原文地址:https://www.cnblogs.com/bingo2-here/p/7365674.html
Copyright © 2011-2022 走看看