[LeetCode]-008-String to Integer (atoi)

前端之家收集整理的这篇文章主要介绍了[LeetCode]-008-String to Integer (atoi)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

网址:https://leetcode.com/problems/string-to-integer-atoi/

题意:

字符串转int数

分析:

经典题,主要需要注意输入中,允许先有空格,再来内容.

内容可能还不是整齐和规则的...

解法:

1.遍历空格

2.判断正负号

3.读数字

4.可能存在结尾号

代码

https://github.com/LiLane/leetcode/blob/master/java/008-StringtoInteger(atoi)⑵01504292346.java

https://github.com/LiLane/leetcode/blob/master/c%2B%2B/008-StringtoInteger(atoi)⑵01504292346.cpp


猜你在找的PHP相关文章