首页 > 其他 > 详细

7 Reverse Integer

时间:2018-04-14 14:37:39      阅读:150      评论:0      收藏:0      [点我收藏+]
 1 class Solution 
 2 {
 3 public:
 4     int reverse(int x) 
 5     {
 6         long long res=0;
 7         while(x)
 8         {
 9             res=res*10+x%10;
10             x/=10;
11         }
12         return (res>INT_MAX||res<INT_MIN)? 0:res;
13     }
14 };

用longlong防止溢出,返回时检测溢出。

这个方法貌似不太好,还是位操作科学些吧。

7 Reverse Integer

原文:https://www.cnblogs.com/zhuangbijingdeboke/p/8831608.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!