String to Integer (atoi)

mplement 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.

注意,+-2 return0; -12 a432 return-12; 循环中需要判断是否溢出,否则会出现long long也溢出的状况。
复制代码
 1 class Solution {
 2 public:
 3     int myAtoi(string str) {
 4         long long res=0;
 5         int n=str.size();
 6         if(n<1) return 0;
 7         int i=0;
 8         int flag=0;
 9         int flagnum=0;
10         for(i=0;i<n;i++)
11         {
12             if(str[i]==' '&&!flag&&!flagnum) continue;
13             if(flag==0)
14             {
15                 if(str[i]=='-') 
16                 {
17                     flag=2;
18                     continue;
19                 }
20                 else if(str[i]=='+') 
21                 {
22                     flag=1;
23                     continue;
24                 }
25             }
26             if(str[i]>='0'&&str[i]<='9')
27             {
28                 flagnum++;
29                 res=res*10+(str[i]-'0');
30             }
31             else break;
32             if(res>INT_MAX||(flag==2&&res>2147483648)) 
33                 break;
34         }
35         if(res>INT_MAX||(flag==2&&res>2147483648)) 
36         {
37             res=(flag==2)?INT_MIN:INT_MAX;
38         }
39         else
40             res=(flag==2)?-res:res;
41         return res;
42     }
43 };
复制代码

 

 另一种写法
复制代码
class Solution {
public:
    int atoi(const char *str) {
        int symbol = 1;
        int i = 0;
        if (str == NULL)
            return 0;
        int n = strlen(str);
        while(str[i]==' '||str[i]=='0')
            i++;
        if(str[i]=='+' || str[i]=='-')
        {
            symbol = str[i]=='+' ? 1:-1;
            i++;
        }
        long res =0;
        for(;i<n;++i)
        {
            int k=str[i]-'0';
            if(k>=0&&k<=9)
            {
                res=res*10+k;
            }
            else
                break;
        }
        res *=symbol;
        if(res>INT_MAX)
                return INT_MAX;
            if(res<INT_MIN)
                return INT_MIN;
       return (int)res;
    }
};
复制代码

 

posted @   鸭子船长  阅读(201)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· DeepSeek 开源周回顾「GitHub 热点速览」
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
点击右上角即可分享
微信分享提示