程序员人生 网站导航

[LeetCode]-007-Reverse Integer

栏目:php教程时间:2015-08-07 07:54:54

网址:https://leetcode.com/problems/reverse-integer/

题意:

反转数字,正负不变.

分析:

思路不言而喻,

重点在有些刁钻的输入输出上.

解法:

由于疏忽正负,又要用到mod.

自然想到abs...

不过abs对int其实不完全适用.

使用前,判断1下是否是INT_MIN或Integer.MIN_VALUE

我又不想记住这个正负,就用x / abs(x)来解决...

那末还需要斟酌0/0是违背数学规律的.

这个也需要单独拿出来.

那末越界的情况自然也是要斟酌,属于常规了.

代码:

https://github.com/LiLane/leetcode/blob/master/java/007-ReverseInteger⑵01504291907.java

https://github.com/LiLane/leetcode/blob/master/c%2B%2B/007-ReverseInteger⑵01504291908.cpp

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐