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.

 

反正我没看上面那些,自己慢慢测试呗。

 

最初代码如下:简直各种…呵呵呵。

 

优化后:

 

勉强看起来不错了…不过记得[:]很慢,可以试图优化下。

str.strip() 函数,去掉字符串前面的空白符

ord() 函数,根据字符返回对于ASCII

 

然后又更新了一下: 速度到了62ms

 

这样看起来,好像 in range 比较快一些…

更快的方法…想不到了(⊙﹏⊙)b…

【LeetCode】8. String to Integer (atoi)
Tagged on:     
0 0 投票数
Article Rating
订阅评论
提醒

0 评论
内联反馈
查看所有评论