-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reverse.java
53 lines (45 loc) · 1.21 KB
/
Reverse.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package leetcode.math;
/**
* @description 7. 整数反转
* @author chengzw
* @link https://leetcode.cn/problems/reverse-integer/
* @since 2022/6/5
*/
/**
给你一个 32 位的有符号整数 x ,返回将 x 中的数字部分反转后的结果。
如果反转后整数超过 32 位的有符号整数的范围 [−231, 231 − 1] ,就返回 0。
假设环境不允许存储 64 位整数(有符号或无符号)。
示例 1:
输入:x = 123
输出:321
示例 2:
输入:x = -123
输出:-321
示例 3:
输入:x = 120
输出:21
示例 4:
输入:x = 0
输出:0
提示:
-231 <= x <= 231 - 1
*/
/**
思路:ans * 10 + 取模拿到末尾数字
参考资料:https://leetcode.cn/problems/reverse-integer/solution/tu-jie-7-zheng-shu-fan-zhuan-by-wang_ni_ma/
时间复杂度:O(log∣x∣)。翻转的次数即 x 十进制的位数。
空间复杂度:O(1)。
*/
public class Reverse {
public int reverse(int x) {
int ans = 0;
while (x != 0) {
if (ans < Integer.MIN_VALUE / 10 || ans > Integer.MAX_VALUE / 10) {
return 0;
}
ans = ans * 10 + x % 10;
x /= 10;
}
return ans;
}
}