-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathAtoi.cpp
55 lines (44 loc) · 1.3 KB
/
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
53
54
55
/*
Implement atoi to convert a string to an integer.
Example :
Input : "9 2704"
Output : 9
Note: There might be multiple corner cases here. Clarify all your doubts using “See Expected Output”.
Questions: Q1. Does string contain whitespace characters before the number?
A. Yes Q2. Can the string have garbage characters after the number?
A. Yes. Ignore it. Q3. If no numeric character is found before encountering garbage characters, what should I do?
A. Return 0. Q4. What if the integer overflows?
A. Return INT_MAX if the number is positive, INT_MIN otherwise.
Warning : DO NOT USE LIBRARY FUNCTION FOR ATOI.
If you do, we will disqualify your submission retroactively and give you penalty points.
LINK: https://www.interviewbit.com/problems/atoi/
*/
int Solution::atoi(const string A)
{
int n = A.length();
int i=0, neg=0;
while(i<n && A[i]==' ')
i++;
if(i<n && A[i]=='-')
{
neg=1;
i++;
}
if(i<n && A[i]=='+')
i++;
long long int res=0;
while(i<n)
{
if(!isdigit(A[i]))
break;
res = res*10 + (A[i]-'0');
if(neg==0 && res>=INT_MAX)
return INT_MAX;
if(neg==1 && (-1*res)<=INT_MIN)
return INT_MIN;
i++;
}
if(neg)
res*=-1;
return (int)res;
}