题目描述:
给定一个 32 位有符号整数,将整数中的数字进行反转。
示例 1:
输入: 123 输出: 321
示例 2:
输入: -123 输出: -321
示例 3:
输入: 120 输出: 21
注意:
假设我们的环境只能存储 32 位有符号整数,其数值范围是 [−231, 231 − 1]。根据这个假设,如果反转后的整数溢出,则返回 0。
方法:不断求余和乘以十,注意溢出。
代码:
public class Solution {
public int reverse(int x) {
boolean negative = x < 0;
if (negative) x = -x;
long r = 0;
while (x>0) {
r = r * 10 + x % 10;
x /= 10;
}
if (negative) r = -r;
if (r > Integer.MAX_VALUE || r < Integer.MIN_VALUE) return 0;
return (int)r;
}
}