【Leetcode】【python】Reverse Integer 反转整数

题目大意

反转整数123变为321,-123变为-321

注意:在32位整数范围内,并且001要成为1

假设我们的环境只能存储 32 位有符号整数,其数值范围是 [−2^31, 2^31 − 1]。根据这个假设,如果反转后的整数溢出,则返回 0。

解题思路

该题最主要的是,判断越界问题

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

要在没有辅助堆栈 / 数组的帮助下 “弹出” 和 “推入” 数字,我们可以使用数学方法。

1
2
3
4
5
6
7
//pop operation:
pop = x % 10;
x /= 10;

//push operation:
temp = rev * 10 + pop;
rev = temp;

但是,这种方法很危险,因为当 $\text{temp} = \text{rev} \cdot 10 + \text{pop}$ 时会导致溢出。

幸运的是,事先检查这个语句是否会导致溢出很容易。

这里写图片描述

因为:2^31 -1= 2147483647 -2^31 = -2147483648

代码

Java

1
2
3
4
5
6
7
8
9
10
11
12
13
class Solution {
public int reverse(int x) {
int rev = 0;
while (x != 0) {
int pop = x % 10;
x /= 10;
if (rev > Integer.MAX_VALUE/10 || (rev == Integer.MAX_VALUE / 10 && pop > 7)) return 0;
if (rev < Integer.MIN_VALUE/10 || (rev == Integer.MIN_VALUE / 10 && pop < -8)) return 0;
rev = rev * 10 + pop;
}
return rev;
}
}

Python

python没有溢出问题,处理这题投机取巧

1
2
3
4
5
6
7
8
9
10
11
12
13
class Solution(object):
def reverse(self, x):
"""
:type x: int
:rtype: int
"""
if x < 0:
result = -int(str(-x)[::-1]) # 字符串倒序输出
else:
result = int(str(x)[::-1])
if result < -2147483648 or result > 2147483647:
return 0
return result

总结