zoukankan      html  css  js  c++  java
  • 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 };
  • 相关阅读:
    (copy) Shell Script to Check Linux System Health
    HTML5 笔记1
    成年后更想要人懂
    端午不过节
    兜兜转转还是往前了一小步
    五月下旬这些天
    立陶宛话剧观后感
    杯子
    你学过的东西总会在某个时候用到
    初识理财记
  • 原文地址:https://www.cnblogs.com/anghostcici/p/6622475.html
Copyright © 2011-2022 走看看