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

    For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.

    public class Solution {
        public int reverse(int x) {
            long ret = 0; //long in order to avoid overflow
            boolean neg = (x < 0)?true: false;
            
            if(x == java.lang.Integer.MIN_VALUE) return 0; //Avoid overflow
            x = Math.abs(x);
            while(x != 0){
                ret = ret *10 + x%10;
                x /= 10;
            }
            if(neg) ret = 0-ret;
            if(ret > java.lang.Integer.MAX_VALUE || ret < java.lang.Integer.MIN_VALUE) return 0;
            return (int) ret;
        }
    }
  • 相关阅读:
    python实现双向链表
    django contenttypes
    tensorflow学习笔记一
    vue指令和事件绑定
    es6简单介绍
    mysql主从复制
    mysql事务
    winform 使用 ReportViewer做报表
    设置控件获取焦点
    修改安卓串口蓝牙app问题记录
  • 原文地址:https://www.cnblogs.com/qionglouyuyu/p/5484246.html
Copyright © 2011-2022 走看看