本博客rss订阅地址: http://feed.cnblogs.com/blog/u/147990/rss

LeetCode:Reverse Integer

题目链接

Reverse digits of an integer.

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

 

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?

Throw an exception? Good, but what if throwing an exception is not an option? You would then have to re-design the function (ie, add an extra parameter)


leetcode的测试样例中似乎没有翻转后溢出的情况。                     本文地址

class Solution {
public:
    int reverse(int x) {
        bool isPositive = true;
        if(x < 0){isPositive = false; x *= -1;}
        long long res = 0;//为了防止溢出,用long long
        while(x)
        {
            res = res*10 + x%10;
            x /= 10;
        }
        if(res > INT_MAX)return isPositive ? INT_MAX : INT_MIN;
        if(!isPositive)return res*-1;
        else return res;
    }
};

 

【版权声明】转载请注明出处http://oj.leetcode.com/problems/reverse-integer/

posted @ 2014-05-18 22:44  tenos  阅读(2009)  评论(0编辑  收藏  举报

本博客rss订阅地址: http://feed.cnblogs.com/blog/u/147990/rss

公益页面-寻找遗失儿童