zoukankan      html  css  js  c++  java
  • Reverse Integer

     

    Reverse digits of an integer.

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

     

    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?

    Throw an exception? Good, but what if throwing an exception is not an option? You would then have to re-design the function (ie, add an extra parameter).

    考虑溢出情况,溢出时result<0,此时返回-1

    public class Solution {
        public int reverse(int x) {
            
            boolean positive = (x>0)? true:false;
            int result = 0;
            x = Math.abs(x);
            
            while(x>0){
                result = result*10 + x%10;
                x = x/10;
            }
            
            if(result<0){
                return -1;
            }
            
            if(!positive){
                result *= -1;
            }
            
            return result;
        }
    }
  • 相关阅读:
    迟滞电压比较器
    单调谐小信号放大器
    汇编指令
    渗透测试之信息收集
    DVWA——文件包含
    DVWA——文件上传
    文件上传漏洞与利用
    在Metasploit中使用PostgreSQL
    软件安装方法
    XML外部实体(XXE)
  • 原文地址:https://www.cnblogs.com/RazerLu/p/3537458.html
Copyright © 2011-2022 走看看