网址: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