给你一个 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
提示:
-2^31 <= x <= 2^31 - 1
解题思路:
1.翻转每一位
class Solution {
public int reverse(int x) {
int a=0;
while(x!=0){
int b=x%10;
int newa=a*10+b;
//如果数字溢出,直接返回0
if((newa-b)/10!=a){
return 0;
}
a=newa;
x=x/10;
}
return a;
}
}
简化:
class Solution {
public int reverse(int x) {
long res=0;
while(x!=0){
res=res*10+x%10;
x/=10;
}
return (int)res==res?(int)res:0;
}
}