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;
        }
    };
  • 相关阅读:
    3组 需求分析报告
    结对编程作业
    3组 团队展示
    第一次个人编程作业
    第一次博客作业
    2020年面向对象程序设计寒假作业3
    3组-Alpha冲刺-4/6
    3组-Alpha冲刺-3/6
    3组-Alpha冲刺-2/6
    3组-Alpha冲刺-1/6
  • 原文地址:https://www.cnblogs.com/Vae1990Silence/p/4283709.html
Copyright © 2011-2022 走看看