(LeetCode) T8.String to Integer (atoi)

Problem:

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


Solve:


Thought:根据提示和示例进行非法输入的排除。先去掉最左边的空格,再用空格分段取第一个字符串。根据字符串的前两位及长度进行非法输入的排除。最后需注意正负,数字范围以及出现两个逗号也是非法输入。

晒一下解题时出现的奇葩输入:“-”, “ ++1”,“-0012a42”

猜你喜欢

转载自blog.csdn.net/scds_zyx/article/details/80113010
今日推荐