7. 整数反转
Posted Ston.V
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7. 整数反转相关的知识,希望对你有一定的参考价值。
1.Description
给你一个 32 位的有符号整数 x ,返回将 x 中的数字部分反转后的结果。
如果反转后整数超过 32 位的有符号整数的范围 [−231, 231 − 1] ,就返回 0。
假设环境不允许存储 64 位整数(有符号或无符号)。
2.Example
示例 1:
输入:x = 123
输出:321
示例 2:输入:x = -123
输出:-321
示例 3:输入:x = 120
输出:21
示例 4:输入:x = 0
输出:0
3.My Code
需要判断一下溢出情况,即对比res和pow(2,31)/10的大小,避免res*10超出2^31范围
class Solution
public:
int reverse(int x)
int sig = 1;
if(x<0)
sig = -1;
x = abs(x);
int res = 0;
while(x > 0)
if(res >= pow(2,31)/10)
return 0;
res = res*10 + x%10;
x = x/10;
return sig*res;
;
4.注意
1.使用INT_MIN和INT_MAX来代替int的范围,定义在linits.h中
以上是关于7. 整数反转的主要内容,如果未能解决你的问题,请参考以下文章
7. 反转整数 [leetcode 7: Reverse Integer]