国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > php教程 > [LeetCode]-008-String to Integer (atoi)

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

来源:程序员人生   发布时间:2015-07-06 09:59:42 阅读次数:2845次

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


生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生