LeetCode第七题

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?

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.

题意是反转十进制int并返回,需要注意的是,int表示范围为 -2147483648 ~ 2147483647,翻转之后的数值可能会溢出,而题意为:如果溢出则返回0。

long long int dmod(int n)
{
    long long int i = 1;
    while (n--)
        i *= 10;
    return i;
}

int reverse(int x) {
    int y = abs(x), bit, tmp = 0, len = 10, sign;
    long long int res = 0;
    if (x==0 || x==-2147483648) return 0;//int最小值取绝对值的话会溢出
    sign = x/y;
    while (len>1 && y / dmod(len-1) == 0)
    {
        len --;
    }
    for (bit=1; bit<=len; bit++)
    {
        tmp = y / dmod(bit-1) % 10;
        res += tmp * (dmod(len-bit));
    }
    //printf("sign = %d, res = %d
", sign, res);
    if (res > 2147483647) return 0;
    return sign * (int)res;
}
原文地址:https://www.cnblogs.com/weir007/p/6307421.html