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.

     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 int MyAtoi(string str)
            {
                if (string.IsNullOrEmpty(str)
                    || string.IsNullOrWhiteSpace(str))
                {
                    return 0;
                }
                string s = "";
                string f = "";
                for (int i = 0; i < str.Length; i++)
                {
                    if (str[i] == '+'
                        || str[i] == '-')
                    {
                        f += str[i];
                        if (f.Length > 1)
                        {
                            return 0;
                        }
                        continue;
                    }
                    if (str[i] >= 49 && str[i] <= 57
                        || (s.Length > 0 && str[i] == 48))
                    {
                        s += str[i];
                    }
                    else if ((str[i] < 48 || str[i] > 57)
                        && str[i] != '+'
                        && str[i] != '-'
                        && str[i] != ' '
                       && s.Length == 0)
                    {
                        return 0;
                    }
                    else if (s.Length > 0
                        || (f.Length > 0 && str[i] != 48))
                    {
                        break;
                    }
                }
    
                int t = 0;
                if (s.Length > 0)
                { 
                    try
                    {
                        t = Convert.ToInt32(f + s);
                    }
                    catch (OverflowException)
                    {
                        if (f == "" || f == "+")
                        {
                            t = int.MaxValue;
                        }
                        else
                        {
                            t = int.MinValue;
                        }
                    }
                }
                return t;
            }
    

      

  • 相关阅读:
    SpringMVC 学习笔记(四) 处理模型数据
    UE4关于Oculus Rift (VR)开发忠告
    电子商务系统的设计与实现(十三):分页组件,从前到后,从JS到Java
    2014年工作中遇到的10个问题:221-230
    2014年工作中遇到的10个问题:221-230
    公司新年第一次全员大会小记
    公司新年第一次全员大会小记
    雷观(十八):我的世界观
    雷观(十八):我的世界观
    今天烦死了,各种技术,各种问题,全栈式多屏工程师不好做啊
  • 原文地址:https://www.cnblogs.com/frank-zhang/p/7641824.html
Copyright © 2011-2022 走看看