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

    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).

    Solution:

    public class Solution {
        public int reverse(int x) {
            int rev=0;
            if(x >= 0){
                while(x != 0){
                  rev = x%10 + 10*rev;
                  x = x/10;
                }
            return rev;
            } else {
                return 0-reverse(-x);
            }
        }
    }
  • 相关阅读:
    第0次作业
    第4次作业
    第3次作业
    第2次作业
    C#浮点数保留位数
    第0次作业
    软件工程第4次作业
    软件工程第3次作业
    软件工程第2次作业
    软件工程第1次作业
  • 原文地址:https://www.cnblogs.com/yeek/p/3800584.html
Copyright © 2011-2022 走看看