zoukankan      html  css  js  c++  java
  • leetcode[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.

    Update (2014-11-10):
    Test cases had been added to test the overflow behavior.

    class Solution {
    public:
        int reverse(int x) {
         long long xx=(x>0)?x:(-x);
         int flag=-1;
         if(xx==x)
         flag=1;
         long long res=0;
         while(xx)
         {
             res=10*res+(xx)%10;
             xx/=10;
         }
         if((res<=2147483647)&&(res>=-2147483648)&&(flag*res<=2147483647)&&(flag*res>=-2147483648))
         {
             res=flag*res;
             return (int)res;
         }
         else
             return 0;
        }
    };
  • 相关阅读:
    第009讲:了不起的分支和循环3
    Term_Application
    十大编程算法助程序员走上高手之路
    每天工作4小时的程序员
    编程真相_节选
    Sublime_Snippet
    VIM资源管理
    微信企业号开发资源整理
    vitruviano
    VIM_git
  • 原文地址:https://www.cnblogs.com/Vae1990Silence/p/4283709.html
Copyright © 2011-2022 走看看