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

【Leetcode】String to Integer (atoi)

时间:2016-06-12 03:25:55      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:https://leetcode.com/problems/string-to-integer-atoi/
题目:

Implement atoi to convert a string to an integer.

Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases.

Notes: It is intended for this problem to be specified vaguely (ie, no given input specs). You are responsible to gather all the input requirements up front.

思路:
各种边界会烦死人的。。。

算法:

[java] view plain copy
 技术分享技术分享
  1. public int myAtoi(String str) {  
  2.     if (str == null || str.equals(""))  
  3.         return 0;  
  4.     str = str.trim();  
  5.     String flag = "+";  
  6.     int i = 0;  
  7.     if ("+".equals(str.charAt(0) + "")) {  
  8.         i++;  
  9.         flag = "+";  
  10.     } else if ("-".equals(str.charAt(0) + "")) {  
  11.         i++;  
  12.         flag = "-";  
  13.     }  
  14.     double sum = 0;  
  15.     while (i < str.length() && str.charAt(i) <= ‘9‘ && str.charAt(i) >= ‘0‘) {  
  16.         sum = sum * 10 + Integer.parseInt("" + str.charAt(i));  
  17.         i++;  
  18.     }  
  19.     if (flag.equals("-")) {  
  20.         sum = -sum;  
  21.     }  
  22.     if (sum > Integer.MAX_VALUE) {  
  23.         sum = Integer.MAX_VALUE;  
  24.     }  
  25.     if (sum < Integer.MIN_VALUE) {  
  26.         sum = Integer.MIN_VALUE;  
  27.     }  
  28.     return (int) sum;  
  29. }  

【Leetcode】String to Integer (atoi)

标签:

原文地址:http://blog.csdn.net/yeqiuzs/article/details/51598065

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