• 7. Reverse Integer


    Reverse digits of an integer.

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

    click to show spoilers.

    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.

    Note:
    The input is assumed to be a 32-bit signed integer. Your function should return 0 when the reversed integer overflows.

    key: how to deal with the overflow??

    Solution 1: use long long to avoid the overflow.(line 10)

     1 class Solution {
     2 public:
     3     int reverse(int x) {
     4         if (x==0){
     5             return 0;
     6         }
     7         int sign=(x>0)?1:-1;
     8         x=abs(x);
     9         int size=(int)log10(x);
    10         long long result=0;
    11         while(x!=0){
    12             result=result+x%10*pow(10,size);
    13             x=x/10;
    14             size--;
    15         }
    16         result*=sign;
    17         return (result>INT_MAX || result<INT_MIN)?0:result;
    18     }
    19 };
  • 相关阅读:
    8-2蒙版初识
    8-1使用自由变换(有些操作和教程不同)
    7-11使用色彩调整图层
    7-10使用历史记录画笔
    7-9将灰度转为彩色
    7-8其他色彩调整
    7-7自动色阶/自动对比度/自动颜色
    7-6替换颜色和色彩范围选取
    7-5匹配颜色
    7-4暗调/高光
  • 原文地址:https://www.cnblogs.com/anghostcici/p/6622475.html
Copyright © 2020-2023  润新知