[LeetCode] 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.

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.

 

参考了C的atoi源码,但发现和VS2010的atoi不一致表现,例如无法处理溢出的情况。这个时候就有while中判断溢出的语句了。

复制代码
 1 class Solution {
 2 public:
 3     int atoi(const char *str) {
 4         // Start typing your C/C++ solution below
 5         // DO NOT write int main() function
 6         assert(str != NULL);
 7         
 8         while(isspace(*str))
 9             str++;
10             
11         int sign = *str == '-' ? -1 : 1;
12         
13         if (*str == '-' || *str == '+')
14             str++;
15             
16         int ret = 0;
17         while(isdigit(*str))
18         {
19             int digit = *str - '0';
20             
21             if (INT_MAX / 10 >= ret)
22                 ret *= 10;
23             else
24                 return sign == -1 ? INT_MIN : INT_MAX;
25                 
26             if (INT_MAX - digit >= ret)
27                 ret += digit;
28             else
29                 return sign == -1 ? INT_MIN : INT_MAX;
30                 
31             str++;
32         }
33         
34         return ret * sign;
35     }
36 };
复制代码

 

posted @   chkkch  阅读(2171)  评论(1编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 地球OL攻略 —— 某应届生求职总结
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 提示词工程——AI应用必不可少的技术
· .NET周刊【3月第1期 2025-03-02】
点击右上角即可分享
微信分享提示