码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode --- Reverse Integer

时间:2014-05-29 00:26:22      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   java   

题目链接

从代码的健壮性考虑, 应该顾及到把数字翻转后发生溢出的情况,但是此题中并没有这种测试数据。

附上代码:

bubuko.com,布布扣
 1 class Solution {
 2 public:
 3     int reverse(int x) {
 4         int tmp = abs(x);
 5         int ans = 0;
 6         while (tmp) {
 7             if (ans > ans * 10 + tmp % 10) 
 8                 return 0; // overflow check
 9             ans = ans * 10 + tmp % 10;
10             tmp /= 10;
11         }
12         if (x < 0) ans *= -1;
13         return ans;
14     }
15 };
bubuko.com,布布扣

 

LeetCode --- Reverse Integer,布布扣,bubuko.com

LeetCode --- Reverse Integer

标签:style   c   class   blog   code   java   

原文地址:http://www.cnblogs.com/Stomach-ache/p/3754492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!