码迷,mamicode.com
首页 > 其他好文 > 详细

实现atoi

时间:2017-08-29 21:39:28      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:char   style   去掉   ring   turn   return   blog   false   trim   

1. 去掉首位空格
2. 判断首位是否有正负号
3. 判断各位是否是0~9,有其他字符直接返回当前结果
 
 1 public class Solution {
 2     public int atoi(String str) {
 3         str = str.trim();
 4         int result = 0;
 5         boolean isPos = true;
 6         
 7         for(int i=0; i<str.length(); i++) {
 8             char c = str.charAt(i);
 9             if(i==0 && (c == ‘+‘ || c == ‘-‘)) {
10                 isPos = c == ‘+‘ ? true : false;
11             } else if(c >= ‘0‘ && c <= ‘9‘) {
12                 if(result > (Integer.MAX_VALUE- (c-‘0‘))/10) {
13                     return isPos ? Integer.MAX_VALUE : Integer.MIN_VALUE;
14                 }
15                 result = result * 10 + c - ‘0‘;
16             } else {
17                 return isPos ? result : -result;
18             }
19         }
20         
21         return isPos ? result : -result;
22     }
23 }

 

 
 
 
 

实现atoi

标签:char   style   去掉   ring   turn   return   blog   false   trim   

原文地址:http://www.cnblogs.com/renzongxian/p/7450162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!