zoukankan      html  css  js  c++  java
  • 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;
    }
  • 相关阅读:
    多姿多彩的线程
    字典操作
    字符串语法
    购物车
    列表常用语法
    整数划分问题
    计算N的阶层
    判断是否是素数
    快速排序
    冒泡排序
  • 原文地址:https://www.cnblogs.com/weir007/p/6307421.html
Copyright © 2011-2022 走看看