Reverse Integer

Reverse digits of an integer.

Example1: x = 123, return 321
Example2: x = -123, return -321

click to show spoilers.

Have you thought about this?

Here are some good questions to ask before coding. Bonus points for you if you have already thought through this!

If the integer's last digit is 0, what should the output be? ie, cases such as 10, 100.

Did you notice that the reversed integer might overflow? Assume the input is a 32-bit integer, then the reverse of 1000000003 overflows. How should you handle such cases?

For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.

Update (2014-11-10):
Test cases had been added to test the overflow behavior.

 

class Solution {
public:
    int reverse(int x) {
        long y = 0, tmp = 0;
        while(x)
        {
            tmp = x % 10;
            y = y * 10 + tmp;
            x /= 10;
        }
        if(y > 2147483648 || y < -2147483648)
            return 0;
        return y;
    }
};
  • 保证正负都不会溢出,如果溢出了输出0
    1. const int max = 0x7fffffff;  //int最大值
    2. const int min = 0x80000000;  //int最小值
    3. 这里的输出y必须定义的比32位长
posted @ 2015-10-29 16:42  dylqt  阅读(106)  评论(0编辑  收藏  举报