1. 程式人生 > >把一個整數倒序排列(java)

把一個整數倒序排列(java)

問題:如 123———>321       -123————>-321    120————>21 怎麼玩呢?

注意要考慮整數的範圍是-231次方到231-1

public int reverse(int x) {
int rev = 0;
while (x != 0) {
int pop = x % 10;
x /= 10;
if (rev > Integer.MAX_VALUE/10 || (rev == Integer.MAX_VALUE / 10 && pop > 7)) return
0; if (rev < Integer.MIN_VALUE/10 || (rev == Integer.MIN_VALUE / 10 && pop < -8)) return 0; rev = rev * 10 + pop; } return rev; }

想要玩更多的?請到 https://leetcode.com/explore/