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;
        }
    
  • 相关阅读:
    Netty学习笔记(三) 自定义编码器
    JavaWeb 消息总线框架 Saka V0.0.1 发布
    BMP 图像信息隐藏及检测
    MATLAB之图像与音频信号处理
    MATLAB之基本语法与基础函数
    CVE-2018-14418 擦出新火花
    浅谈电子数字取证技术
    Linux 反弹 Shell
    Windows 反弹 Shell
    AWD攻防赛之各类漏洞FIX方案
  • 原文地址:https://www.cnblogs.com/bingo2-here/p/7365674.html
Copyright © 2011-2022 走看看