整数反转
整数反转
https://leetcode-cn.com/leetbook/read/top-interview-questions-easy/xnx13t/
https://leetcode-cn.com/problems/reverse-integer/
逐位运算
使用x % 10
取得个位数的值,将它加到临时值ret
中,并且让ret
倍增10。
使用x /= 10
来去掉个位(C++)。
用INT_MIN / 10
和INT_MAX / 10
来提前判断是否会越界。
1 |
|