zoukankan      html  css  js  c++  java
  • LeetCood8:String to Integer

    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.

    int myAtoi(char* str)
    {
        int index=0;
        int is_positive = 1;
        long long result=0;
        long long LONG_INT_MIN_ABS = INT_MIN;
        LONG_INT_MIN_ABS = 0-LONG_INT_MIN_ABS;
        
        while(str[index] == ' ')
        {
            index++;
        }
        if(str[index] == '')
        {
            return 0;
        }
        
        if(str[index] == '+')
        {
            index++;
        }
        else if(str[index] == '-')
        {
            is_positive = 0;
            index++;
        }
        else if((str[index]-'0' >= 0)&&(str[index]-'0' <= 9))
        {
            is_positive = 1;
        }else{
            return 0;
        }
        
        while((str[index]-'0'>=0)&&(str[index]-'0' <=9))
        {
            result=result*10+(str[index]-'0');
            index++;
            if(result>INT_MAX && is_positive==1)
            {
                return INT_MAX;
            }else if(result>LONG_INT_MIN_ABS && is_positive==0)
            {
                return INT_MIN;
            }
        }
        if(is_positive==0)
        {
            return -(int)result;
        }else{
            return (int)result;
        }
    } 
     
  • 相关阅读:
    App_Data文件夹的用处.
    .net工资管理系统 C#2.0开发
    红警2尤里的复仇 无限金钱 无限电力修改器
    用bho方式拦截中国电信流氓广告
    仙剑4按键取钱的东东。
    多浏览器测试的利器IETester,自带IE5.5,IE6,IE7,IE8等多个内核.
    dataGridView使用指南系列一、回车换行或换列完美解决方案
    红警2共和国之辉无限金钱修改器,造东西不花钱还赚钱。
    UpdatePanel控件,你真的会用了吗?
    XP+WIN7共享动态磁盘的一点收获
  • 原文地址:https://www.cnblogs.com/evansyang/p/5240879.html
Copyright © 2011-2022 走看看