整数反转

给你一个 32 位的有符号整数 x ,返回将 x 中的数字部分反转后的结果。

如果反转后整数超过 32 位的有符号整数的范围 [−231,  231 − 1] ,就返回 0。

假设环境不允许存储 64 位整数(有符号或无符号)。

示例 1:

1
2
输入:x = 123
输出:321

示例 2:

1
2
输入:x = -123
输出:-321

示例 3:

1
2
输入:x = 120
输出:21

示例 4:

1
2
输入:x = 0
输出:0

提示:

-231 <= x <= 231 - 1

当所计算数字大于2^30 次方或等于2^31 次方但余下的数大于7或小于-2^30 次方或等于-2^31 次方但余下的数小于-8时,只要再计算一次就溢出。

解题方式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public static int reverse(int x) {
int pop;
int res = 0;
while (x != 0) {
pop = x % 10;
System.out.println("pop: " + pop);
x = x / 10;
System.out.println("x: " + x);
if (res > Integer.MAX_VALUE / 10 || (res == Integer.MAX_VALUE / 10 && pop > 7)) {
return 0;
}
if (res < Integer.MIN_VALUE / 10 || (res == Integer.MIN_VALUE / 10 && pop < -8)) {
return 0;
}
System.out.println("res before: " + res);
res = res * 10 + pop;
System.out.println("res after: " + res);
}
return res;
}

原题

https://leetcode-cn.com/problems/reverse-integer