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;
    }
  • 相关阅读:
    KINDLE 小说下载--超级书库
    修改PR Cs6,PS Cs6,AU Cs6的启动界面
    SQLMAP用户手册
    Burp Suite 实战指南--说明书
    XSS跨站测试代码
    万能密码字典
    python数据结构之队列(一)
    python数据结构之栈
    python实现链表(二)
    python实现链表(一)
  • 原文地址:https://www.cnblogs.com/weir007/p/6307421.html
Copyright © 2011-2022 走看看