您的位置:首页 > 其它

leetcode-007-Reverse Integer

2016-09-18 20:18 330 查看
P007 Reverse digits of an integer
思路分析

代码
java

python

P007 Reverse digits of an integer.

Example1: x = 123, return 321
Example2: x = -123, return -321


Have you thought about this?

Here are some good questions to ask before coding. Bonus points for you if you have already thought through this!

If the integer’s last digit is 0, what should the output be? ie, cases such as 10, 100.

Did you notice that the reversed integer might overflow? Assume the input is a 32-bit integer, then the reverse of 1000000003 overflows. How should you handle such cases?

For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.

思路分析

没必要当做数字处理,使用字符串操作更加简单。

代码

java

public class Solution007 {
public int reverse(int x) {
try {
StringBuilder sb = new StringBuilder(new Integer(x).toString());
if (x < 0)
sb.deleteCharAt(0);

return x < 0 ? -Integer.parseInt(sb.reverse().toString()) : Integer.parseInt(sb.reverse().toString());
} catch (NumberFormatException e) {
return 0;
}
}
}


python

class Solution007(object):
def reverse(self, x):
"""
:type x: int
:rtype: int
"""
ret = ""
if x < 0:ret = "-"

ret += str(abs(x))[::-1]
return int(ret)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode reverse integer