您的位置:首页 > 其它

Leetcode 7 Reverse Integer

2016-09-07 15:00 363 查看
题目描述:

Reverse digits of an integer.

Example1: x = 123, return 321
Example2: x = -123, return -321
最需注意的就是倒置后的整形溢出问题,当>2147483647和<-2147483647时,返回0
class Solution {
public:
int reverse(int x) {
long result = 0;

while(x != 0)
{
result = result * 10 + x % 10;
x = x / 10;
}

if(result > INT_MAX || result < INT_MIN)
return 0;
else
return result;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: