reverse digits of an integer.
example1: x = 123, return 321
example2: x = -123, return -321
本地注意正負號判斷比較關鍵,實現部分可能不是最優的,按照自己的想法實現:
設ret = 1;每次對x進行取餘mod,然後ret = ret*10+mod;(第一次讓ret = mod),最後返回ret
**如下:
1public
class
solution else
1819 x /= 10;20
21}2223
return (flag == 1) ? -result : result;
2425
}26 }
Reverse Integer演算法題
注意有符號的32bits整數的範圍 return reservation else 之前一直在思考如果給你乙個大整數,如何把這個給定的大整數分解成乙個乙個的數字。後來做了這道題給我很大的啟發。因為我開始的想法是想把這個數轉換成字串的方法來實現這道題的。其實要把乙個大整數拆分成乙個個數隻需要用到取餘 ...
Reverse Integer(反轉整型數)
reverse digits of an integer.反轉乙個整型數 example1 x 123,return 321 example2 x 123,return 321 1.個人分析 思路一 整型數轉字串 反轉字串 字串轉整型 思路二 數學解法,不斷地進行整除和取餘運算。2.個人解法 1 i...
演算法系列 Reverse Integer
reverse digits of an integer.example1 x 123,return 321 example2 x 123,return 321 note the input is assumed to be a 32 bit signed integer.your function...