Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
Here are some good questions to ask before coding. Bonus points for you if you have already thought through this!
If the integer's last digit is 0, what should the output be? ie, cases such as 10, 100.
Did you notice that the reversed integer might overflow? Assume the input is a 32-bit integer, then the reverse of 1000000003 overflows. How should you handle such cases?
For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.
Update (2014-11-10):
Test cases had been added to test the overflow behavior.
一、题目描述
#include<iostream>
#include<algorithm>
using namespace std;
class Solution {
public:
int reverse(int x) {
bool negative_flag = false;//是否为负数
if (x == INT_MIN) //这里必须要判断 因为INT_MIN 用八位 二进制表示为 1000 0000
//当进行x=-x运算时,计算机中用补码相乘,-1的补码为原码除符号位外取反加1
//也就是 1000 0001 取反加一补码变为 1111 1111,所以x=-x变为补码乘法
//1000 0000*1111 1111 =1000 0000,x又等于了INT_MIN ,所以当while循环中的x并没有变为正数。
return 0;
if (x<0)
{
x = -x;
negative_flag = true;
}
long long result = 0;
while (x != 0)
{
result = result * 10 + x % 10;
x = x / 10;
}
if (result>INT_MAX)
return 0;
if (negative_flag)
return -result;
else
return result;
}
};
int main()
{
int x = -2345;
Solution solu;
int y = solu.reverse(x);
cout << y << endl;
system("pause");
return 0;
}