LeetCode:Reverse Integer

题目连接html

Reverse digits of an integer.git

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

 

Have you thought about this?this

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

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

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?ip

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


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/get

相关文章
相关标签/搜索