|
26 | 26 | **********************************************************************************/
|
27 | 27 |
|
28 | 28 | #include <stdio.h>
|
| 29 | +#include <stdlib.h> |
29 | 30 |
|
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) |
31 | 36 | int reverse(int x) {
|
32 | 37 | int y=0;
|
33 | 38 | int n;
|
34 | 39 | while( x != 0){
|
35 | 40 | 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 | + } |
36 | 46 | y = y*10 + n;
|
37 | 47 | x /= 10;
|
38 | 48 | }
|
39 | 49 | return y;
|
40 | 50 | }
|
41 | 51 |
|
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) |
43 | 55 | {
|
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); |
48 | 65 | //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 | + } |
52 | 78 | return 0;
|
53 | 79 | }
|
0 commit comments