leetcode: Reverse Integer

http://oj.leetcode.com/problems/reverse-integer/

Reverse digits of an integer.

Example1: x = 123, return 321
Example2: x = -123, return -321

click to show spoilers.

Have you thought about this?
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?

Throw an exception? Good, but what if throwing an exception is not an option? You would then have to re-design the function (ie, add an extra parameter).

思路

其实溢出什么的完全没必要考虑,因为题目根本就没要求你处理溢出的情况。

 1 class Solution {
 2 public:
 3     int reverse(int x) {
 4         bool minus = (x < 0);
 5         int y = 0;
 6         
 7         x = abs(x);
 8         
 9         while (x > 0) {
10             y = y * 10 + x % 10;
11             x /= 10;
12         }
13         
14         return minus ? -y : y;
15     }
16 };
原文地址:https://www.cnblogs.com/panda_lin/p/reverse_integer.html