首页 > 编程语言 > 详细

[LeetCode][JavaScript]String to Integer (atoi)

时间:2015-07-25 21:24:53      阅读:445      评论:0      收藏:0      [点我收藏+]

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.

 

Requirements for atoi:

The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus sign followed by as many numerical digits as possible, and interprets them as a numerical value.

The string can contain additional characters after those that form the integral number, which are ignored and have no effect on the behavior of this function.

If the first sequence of non-whitespace characters in str is not a valid integral number, or if no such sequence exists because either str is empty or it contains only whitespace characters, no conversion is performed.

If no valid conversion could be performed, a zero value is returned. If the correct value is out of the range of representable values, INT_MAX (2147483647) or INT_MIN (-2147483648) is returned.

 

 

 


 

 

 

无聊题,一开始叫我做这种题的时候我是拒绝的。

注意几点吧:

1.前面有正负号;

2.-12a12输出-12;

3.INT_MAX (2147483647), INT_MIN (-2147483648);

4.有长整型,全部转成numeric会越界,超过极值就可以返回结果了。

 1 /**
 2  * @param {string} str
 3  * @return {number}
 4  */
 5 var myAtoi = function(str) {
 6     str = str.trim();
 7     var i = 0; sign = ‘+‘, num = "", result = 0, base = 1;
 8     if(str[0] === ‘+‘){
 9         i++;
10     }else if(str[0] === ‘-‘){
11         sign = ‘-‘;
12         i++;
13     }
14     for(; i < str.length; i++){
15         if(str[i].charCodeAt(0) >= 48 && str[i].charCodeAt(0) <= 57){
16             num += str[i];
17         }else{
18             if(num === ""){
19                 return 0;
20             }else{
21                 break;
22             }            
23         }
24     }
25     for(i = num.length - 1; i >=0; i--){
26         result += base * num[i];
27         base *= 10;
28         if(result > 2147483647 && sign === ‘+‘){
29             return 2147483647;
30         }else if(result > 2147483648 && sign === ‘-‘){
31             return -2147483648;
32         }
33     }
34     return sign === ‘-‘ ? result * -1 : result;
35 };

 

直接调系统函数报复社会

 1 /**
 2  * @param {string} str
 3  * @return {number}
 4  */
 5 var myAtoi2 = function(str) {
 6     var res = parseInt(str);
 7     if(res > 2147483647){
 8         res = 2147483647;
 9     }else if(res < -2147483648){
10         res = -2147483648;
11     }
12     return isNaN(res) ? 0 : res;
13 };

 

 
 
 

[LeetCode][JavaScript]String to Integer (atoi)

原文:http://www.cnblogs.com/Liok3187/p/4676493.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!