Skip to content

Commit 71905c3

Browse files
committed
fix the integer overflow issue
1 parent 1e0de5b commit 71905c3

File tree

1 file changed

+35
-9
lines changed

1 file changed

+35
-9
lines changed

src/reverseInteger/reverseInteger.cpp

+35-9
Original file line numberDiff line numberDiff line change
@@ -26,28 +26,54 @@
2626
**********************************************************************************/
2727

2828
#include <stdio.h>
29+
#include <stdlib.h>
2930

30-
31+
//Why need the INT_MIN be defined like that?
32+
//Please take a look:
33+
// http://stackoverflow.com/questions/14695118/2147483648-0-returns-true-in-c
34+
#define INT_MAX 2147483647
35+
#define INT_MIN (-INT_MAX - 1)
3136
int reverse(int x) {
3237
int y=0;
3338
int n;
3439
while( x != 0){
3540
n = x%10;
41+
//Checking the over/underflow.
42+
//Actually, it should be y>(INT_MAX-n)/10, but n/10 is 0, so omit it.
43+
if (y > INT_MAX/10 || y < INT_MIN/10){
44+
return 0;
45+
}
3646
y = y*10 + n;
3747
x /= 10;
3848
}
3949
return y;
4050
}
4151

42-
int main()
52+
#define TEST(n, e) printf("%12d => %-12d %s!\n", n, reverse(n), e == reverse(n)?"passed":"failed")
53+
54+
int main(int argc, char**argv)
4355
{
44-
printf("%d, %d\n", 123, reverse(123));
45-
printf("%d, %d\n", -123, reverse(-123));
46-
printf("%d, %d\n", 100, reverse(100));
47-
printf("%d, %d\n", 1002, reverse(1002));
56+
//basic cases
57+
TEST( 123, 321);
58+
TEST( -123, -321);
59+
TEST( -100, -1);
60+
TEST( 1002, 2001);
61+
//big integer
62+
TEST( 1463847412, 2147483641);
63+
TEST(-2147447412, -2147447412);
64+
TEST( 2147447412, 2147447412);
4865
//overflow
49-
printf("%d, %d\n", 1000000003 , reverse(1000000003 ));
50-
printf("%d, %d\n", -2147447412 , reverse(-2147447412 ));
51-
printf("%d\n", -2147447412 == reverse(-2147447412 ));
66+
TEST( 1000000003, 0);
67+
TEST( 2147483647, 0);
68+
TEST(-2147483648, 0);
69+
//customized cases
70+
if (argc<2){
71+
return 0;
72+
}
73+
printf("\n");
74+
for (int i=1; i<argc; i++) {
75+
int n = atoi(argv[i]);
76+
printf("%12d => %-12d %s!\n", n, reverse(n), reverse(reverse(n))==n ? "passed":"failed");
77+
}
5278
return 0;
5379
}

0 commit comments

Comments
 (0)