网址: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