-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path8_String_to_Integer_atoi.cpp
More file actions
157 lines (131 loc) Β· 4.84 KB
/
8_String_to_Integer_atoi.cpp
File metadata and controls
157 lines (131 loc) Β· 4.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++'s atoi function).
The algorithm for myAtoi(string s) is as follows:
Read in and ignore any leading whitespace.
Check if the next character (if not already at the end of the string) is '-' or '+'. Read this character in if it is either. This determines if the final result is negative or positive respectively. Assume the result is positive if neither is present.
Read in next the characters until the next non-digit character or the end of the input is reached. The rest of the string is ignored.
Convert these digits into an integer (i.e. "123" -> 123, "0032" -> 32). If no digits were read, then the integer is 0. Change the sign as necessary (from step 2).
If the integer is out of the 32-bit signed integer range [-231, 231 - 1], then clamp the integer so that it remains in the range. Specifically, integers less than -231 should be clamped to -231, and integers greater than 231 - 1 should be clamped to 231 - 1.
Return the integer as the final result.
Note:
Only the space character ' ' is considered a whitespace character.
Do not ignore any characters other than the leading whitespace or the rest of the string after the digits.
Example 1:
Input: s = "42"
Output: 42
Explanation: The underlined characters are what is read in, the caret is the current reader position.
Step 1: "42" (no characters read because there is no leading whitespace)
^
Step 2: "42" (no characters read because there is neither a '-' nor '+')
^
Step 3: "42" ("42" is read in)
^
The parsed integer is 42.
Since 42 is in the range [-231, 231 - 1], the final result is 42.
Example 2:
Input: s = " -42"
Output: -42
Explanation:
Step 1: " -42" (leading whitespace is read and ignored)
^
Step 2: " -42" ('-' is read, so the result should be negative)
^
Step 3: " -42" ("42" is read in)
^
The parsed integer is -42.
Since -42 is in the range [-231, 231 - 1], the final result is -42.
Example 3:
Input: s = "4193 with words"
Output: 4193
Explanation:
Step 1: "4193 with words" (no characters read because there is no leading whitespace)
^
Step 2: "4193 with words" (no characters read because there is neither a '-' nor '+')
^
Step 3: "4193 with words" ("4193" is read in; reading stops because the next character is a non-digit)
^
The parsed integer is 4193.
Since 4193 is in the range [-231, 231 - 1], the final result is 4193.
Constraints:
0 <= s.length <= 200
s consists of English letters (lower-case and upper-case), digits (0-9), ' ', '+', '-', and '.'.
*/
class Solution {
public:
int myAtoi(string s) {
trim(s);
if (s.empty())
return 0;
const int sign = s[0] == '-' ? -1 : 1;
if (s[0] == '+' || s[0] == '-')
s = s.substr(1);
long num = 0;
for (const char c : s) {
if (!isdigit(c))
break;
num = num * 10 + (c - '0');
if (sign * num < INT_MIN)
return INT_MIN;
if (sign * num > INT_MAX)
return INT_MAX;
}
return sign * num;
}
private:
void trim(string& s) {
s.erase(0, s.find_first_not_of(' '));
s.erase(s.find_last_not_of(' ') + 1);
}
};
class Solution {
public:
int myAtoi(string s){
int sign = 1 , ans = 0 , n = s.size() ,i = 0;
// Ignore leading spaces
while (i < n && s[i] == ' ') {
i++;
}
// Handle the sign
if (i < n && (s[i] == '-' || s[i] == '+')){
if( s[i] == '+' ) sign = 1;
else sign = -1 ;
i++;
}
// Handle the case where the first non-space character is '0'
if (i < n && s[i] == '0') {
while (i < n && s[i] == '0') {
i++;
}
// Check if there's a valid number after leading zeros
if (i < n && s[i] >= '1' && s[i] <= '9') {
while (i < n && s[i] >= '0' && s[i] <= '9') {
int digit = s[i++] - '0';
// Check for overflow before updating ans
if (ans > INT_MAX / 10 || (ans == INT_MAX / 10 && digit > 7)) {
if(sign == 1)return INT_MAX;
else return INT_MIN;
}
ans = ans * 10 + digit;
}
return ans * sign;
} else {
return 0; // Invalid input
}
}
// Handle the general case of non-zero digits
if (i < n && s[i] >= '1' && s[i] <= '9') {
while (i < n && s[i] >= '0' && s[i] <= '9') {
int digit = s[i++] - '0';
// Check for overflow before updating ans
if (ans > INT_MAX / 10 || (ans == INT_MAX / 10 && digit > 7)) {
if(sign == 1)return INT_MAX;
else return INT_MIN;
}
ans = ans * 10 + digit;
}
return ans * sign;
} else {
return 0; // Invalid input
}
}
};