-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathString to Integer (atoi).cpp
52 lines (46 loc) · 1.38 KB
/
String to Integer (atoi).cpp
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
class Solution {
public:
int myAtoi(string str) {
long ans=0;
long len=str.length()-1,mul=1;
bool con=false;
for(long i=0;i<=len;i++){
long val=(str[i]-'0');
if((val>=0 && val<=9) || str[i]=='-' || str[i]=='+')
{
if(val>=0 && val<=9){
ans=ans*10+val;
con=true;
}
if(str[i]=='-')
mul=-1;
for(long j=i+1;j<=len;j++){
long temp=(str[j]-'0');
if(temp>=0 && temp<=9){
ans=ans*10+temp;
con=true;
if(ans>=2147483647)
{
//mul=1;
break;
}
}else{
break;
}
}
break;
}else if(str[i]==' '){
}else{
break;
}
}
if(ans>=2147483647 && mul==1)
return (mul*2147483647);
else if(ans>=2147483648 && mul==-1)
return (mul*2147483648);
if(con)
return (ans*mul);
else
return (0);
}
};