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;
        }
    };
  • 相关阅读:
    mysql时间操作函数和存储过程
    puppet foreman
    mysql c haracter
    socket
    socket 网摘
    网络安全
    sqlite3 C接口
    spring 配置文件XSD地址
    programData
    网络安全数据包分析
  • 原文地址:https://www.cnblogs.com/Vae1990Silence/p/4283709.html
Copyright © 2011-2022 走看看