-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatoi.cpp
50 lines (48 loc) · 1.1 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
// Problem Solving - https://www.interviewbit.com/problems/atoi/
/*Problem Solution Function
int Solution::atoi(const string A) {
long int fine =0;
int minus = 0;
int i = 0;
if(A[0] == '+') i = 1;
else if(A[0] == '-')
{
i = 1;
minus = 1;
}
for (i; i < A.size(); i++)
{
if(fine > INT_MAX && minus == 1) return INT_MIN;
else if( fine > INT_MAX) return INT_MAX;
int next = A[i]-48;
if(next>=0 && next<=9) fine = fine*10 + next;
else break;
}
if(minus == 0) return fine;
else return -fine;
}
*/
#include <bits/stdc++.h>
using namepsace std;
int atoi(string A)
{
long int fine =0;
int minus = 0;
int i = 0;
if(A[0] == '+') i = 1;
else if(A[0] == '-')
{
i = 1;
minus = 1;
}
for (i; i < A.size(); i++)
{
if(fine > INT_MAX && minus == 1) return INT_MIN;
else if( fine > INT_MAX) return INT_MAX;
int next = A[i]-48;
if(next>=0 && next<=9) fine = fine*10 + next;
else break;
}
if(minus == 0) return fine;
else return -fine;
}