现在的位置: 首页 > 综合 > 正文

数字逆序 leetcode

2018年09月30日 ⁄ 综合 ⁄ 共 826字 ⁄ 字号 评论关闭

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

public class Solution {
    public int reverse(int x) {
        // if(x==0) return 0  //处理0,可不用单独考虑
        
        boolean negative = false;
        if(x<0)  negative = true;
        
        x = Math.abs(x);
        
       // while(x%10==0){  //处理尾部的0,可不用单独考虑
        //    x/=10;
        //}
        
        int now = 0;
        while(x>0){
            now*=10;
            now+=x%10;
            x/=10;
        }
        if(now<0)  return -1; // 溢出啦!!!题目要求不用exception
        if(negative)  now = -now;
        return now;
    }
}

抱歉!评论已关闭.