[leetcode] 8. String to Integer (atoi)

网友投稿 237 2022-11-29

[leetcode] 8. String to Integer (atoi)

Description

Implement atoi which converts a string to an integer.

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.

Note:

Only the space character ’ ’ is considered as whitespace character. Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−231, 231 − 1]. If the numerical value is out of the range of representable values, INT_MAX (231 − 1) or INT_MIN (−231) is returned. Example 1:

Input:

"42"

Output:

42

Example 2:

Input:

" -42"

Output:

-42

Explanation:

The first non-whitespace character is '-', which is the minus sign. Then take as many numerical digits as possible, which gets 42.

Example 3:

Input:

"4193 with words"

Output:

4193

Explanation:

Conversion stops at digit '3' as the next character is not a numerical digit.

Example 4:

Input:

"words and 987"

Output:

0

Explanation:

The first non-whitespace character is 'w', which is not a numerical digit or a +/- sign. Therefore no valid conversion could be performed.

Example 5:

Input:

"-91283472332"

Output:

-2147483648

Explanation:

The number "-91283472332" is out of the range of a 32-bit signed integer.Thefore INT_MIN (−231) is returned.

分析

题目的意思是:实现字符串专数字的函数。

直接法计算,这里要考虑溢出,有空格,非法字符等情况。

代码

class Solution {public: int myAtoi(string str) { if(str.empty()){ return 0; } int i=0; while(str[i]==' '){ i++; } int sign=1; if(str[i]=='-'){ sign=-1; i++; }else if(str[i]=='+'){ i++; } long sum=0; while(str[i]!='\0'&&(str[i]>='0'&&str[i]<='9')){ sum=sum*10+str[i]-'0'; if(sum>INT_MAX&&sign==-1){ return INT_MIN; }else if(sum>INT_MAX){ return INT_MAX; } i++; } return (int)sign*sum; }};

参考文献

​​[编程题]string-to-integer-atoi​​​​[LeetCode] String to Integer (atoi) 字符串转为整数​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:[leetcode] 87. Scramble String
下一篇:Java程序中方法的用法重载和递归
相关文章

 发表评论

暂时没有评论,来抢沙发吧~