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;
    }
  • 相关阅读:
    JVM 常用参数设置(针对 G1GC)
    Java 字符串常量池 及 intern 方法的使用
    JDK 1.8 Metaspace 详解
    JDK 1.8 MetaSpace(元空间)介绍及调优
    Git 统计代码行数
    王永庆传-读书笔记2
    王永庆传-读书笔记1
    董明珠:女人真想干点事,谁也拦不住
    esxi5.5安装nvme驱动
    nvme ssd的一些相关知识点
  • 原文地址:https://www.cnblogs.com/weir007/p/6307421.html
Copyright © 2011-2022 走看看