翻转整数,注意几个坑点…

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.

 

Update (2014-11-10):
Test cases had been added to test the overflow behavior.

 

注意点:负数和越界吧…

 

给出多个方法:

 

字符串方法:

比上面的方法慢,但是短码看起来舒服。不过我不知道能不能更快了…

 

心疼,提交的越来越慢…

【LeetCode】7. Reverse Integer
Tagged on:         
0 0 投票数
Article Rating
订阅评论
提醒

0 评论
内联反馈
查看所有评论