会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
数据矿工
bring order to the world
博客园
首页
新随笔
联系
订阅
管理
2013年9月3日
leetcode: String to Integer (atoi)
摘要: 想要一次性想到所有的规则可有点难度,尤其是溢出的处理。 public int atoi(String str) { // Start typing your Java solution below // DO NOT write main() function if(str.length() == 0) return 0; int i=0; int flag = 1; long tmp = 0; while(str.charAt(i)==' ') ...
阅读全文
posted @ 2013-09-03 18:36 nanpo
阅读(870)
评论(1)
推荐(0)
编辑