Skip to content

Commit 00960ad

Browse files
Solution to #issue pezy#23 : String to Integer (atoi) is not found (404)
Have not added any Readme file since Readme files are in different language. Since main Readme file doesn't contain this problem, I have labeled it as 711.
1 parent 1756256 commit 00960ad

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed
+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
class Solution {
2+
public:
3+
bool isOverflow(long long a, long long b){
4+
long long res=a*10+b-48;
5+
if(res>INT_MAX)
6+
return true;
7+
return false;
8+
}
9+
10+
int myAtoi(string s) {
11+
int c=0;
12+
bool isminus=0;
13+
bool nostart=0;
14+
for(int i=0;i<s.size();i++){
15+
16+
if(s[i]==32){
17+
if(!nostart)
18+
continue;
19+
else
20+
break;
21+
}
22+
else if(s[i]==43){
23+
if(!nostart)
24+
nostart=1;
25+
else
26+
break;
27+
}
28+
else if(s[i]==45){
29+
if(nostart)
30+
break;
31+
else{
32+
isminus=1;
33+
nostart=1;
34+
}
35+
}
36+
else if((s[i]<48)||s[i]>57){
37+
break;
38+
}
39+
else{
40+
nostart=1;
41+
if(isOverflow(c,s[i])){
42+
if(isminus){
43+
c=INT_MIN;
44+
isminus=0;
45+
}
46+
else{
47+
c=INT_MAX;
48+
}
49+
break;
50+
}
51+
52+
else{
53+
c=c*10+(s[i]-48);
54+
}
55+
56+
}
57+
}
58+
59+
if(isminus){
60+
c=c*-1;
61+
}
62+
63+
return c;
64+
}
65+
};

0 commit comments

Comments
 (0)