1. 程式人生 > >7. Reverse Integer(注意越界問題)

7. Reverse Integer(注意越界問題)

【題目】

Given a 32-bit signed integer, reverse digits of an integer.

(翻譯:給定一個 32 位有符號整數,將整數中的數字進行反轉。)

Example:

Input: 123
Output: 321

Input: -123
Output: -321

Input: 120
Output: 21

Note:

Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−231,  231 − 1]. For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.

(假設我們的環境只能儲存 32 位有符號整數,其數值範圍是 [−2^31,  2^31 − 1]。根據這個假設,如果反轉後的整數溢位,則返回 0。)

【分析】

這是非常簡單的一道題,唯一需要注意的就是越界問題。

int型別的範圍是:-2 ^31 ~ 2 ^31 - 1(-2147483648~2147483647),假設我們輸入的整數是1234567899,reverse後就變成了9987654321,超出int最大範圍,也就會出現越界錯誤。所以為了避免這種情況,我們在定義最終返回結果的時候,應該使用long型而不是int型。

另外,還需要掌握的方法就是通過不斷的取餘來獲取個位數字,通過/ 10運算來獲取個位前面的數字。

Java實現程式碼如下:

class Solution {
    public int reverse(int x) {
        long res = 0;
        while (x != 0) {
            res = res * 10 + x % 10;
            x /= 10;
            if (res > Integer.MAX_VALUE || res < Integer.MIN_VALUE) return 0;
        }
        return (int)res;
    }
}