LeetCode: String to Interger (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.

spoilers
alert... click to show requirements for atoi.

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.

提示: 使用string的特性来判断是否越界。 strcmp

1.去掉字符串之前多余的空格

2. 判断正负号

3. 记录数字字符串。

4. 判断是否越界。

    利用好:strcmp


 1 class Solution {
2 public:
3 int atoi(const char *str) {
4 const char* Max = "2147483647";
5 const char* Min = "2147483648";
6 char b[100];
7 int number=0;
8 int below=0,i=0,j=0;
9 while(str[i]==‘ ‘)i++;
10 if(i==strlen(str)) return 0;
11
12 if(str[i]==‘+‘||str[i]==‘-‘)
13 {
14 if(str[i]==‘-‘) below=1;
15 i++;
16 }
17
18 for(;i<strlen(str);i++)
19 {
20 if(str[i]>=‘0‘ && str[i]<=‘9‘)
21 b[j++]=str[i];
22 else
23 break;
24 }
25 b[j]=‘\0‘;
26 int lb = strlen(b);
27 if(lb>10)
28 {
29 if(below) return INT_MIN;
30 else return INT_MAX;
31 }
32 else if(lb==10)
33 {
34 if(below)
35 {
36 if(strcmp(b,Min)>=0) return INT_MIN;
37 else
38 {
39 for(j=0;j<lb;j++)
40 number= number*10 + b[j]-‘0‘;
41 }
42 }
43 else
44 {
45 if(strcmp(b,Max)>=0) return INT_MAX;
46 else
47 {
48 for(j=0;j<lb;j++)
49 number= number*10 + b[j]-‘0‘;
50 }
51 }
52 }
53 else
54 {
55 for(j=0;j<lb;j++)
56 number= number*10 + b[j]-‘0‘;
57 }
58 return below>0?-number:number;
59 }
60
61 };

分支结构有点多,需要仔细分析分析。

转载请注明出处: http://www.cnblogs.com/double-win/谢谢

时间: 2024-10-12 08:32:15

LeetCode: String to Interger (atoi) 题解的相关文章

leetcode——String to Integer (atoi) 字符串转换为整型数(AC)

mnesia在频繁操作数据的过程可能会报错:** WARNING ** Mnesia is overloaded: {dump_log, write_threshold},可以看出,mnesia应该是过载了.这个警告在mnesia dump操作会发生这个问题,表类型为disc_only_copies .disc_copies都可能会发生. 如何重现这个问题,例子的场景是多个进程同时在不断地mnesia:dirty_write/2 mnesia过载分析 1.抛出警告是在mnesia 增加dump

LeetCode——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 spe

[leetcode] [leetcode] 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 spe

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

题目 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

leetcode - String to Integer (atoi) 字符串转整数

Implement atoi to convert a string to an integer. 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. 题目:实现字符串转整数 注意事项:考虑好各种可能的输入(坑); public class Solution

[LeetCode] 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 spe

[LeetCode] 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 spe

[LeetCode] 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 spe

[Leetcode]String to Integer (atoi) 简易实现方法

刚看到题就想用数组做,发现大多数解也是用数组做的,突然看到一个清新脱俗的解法: 1 int atoi(const char *str) { 2 3 4 5 if(*str == '\0') return 0; 6 7 int n; 8 9 string s(str); 10 11 istringstream iss(s); 12 13 iss>>n; 14 15 return n; 16 17 } 代码简洁,核心使用的是istringstream C++串流输入类,该类对象能把字符串对象str