首页 > 其他 > 详细

[leedcode 07]Reverse Integer

时间:2015-07-05 00:43:27      阅读:286      评论:0      收藏:0      [点我收藏+]
public class Solution {
    public int reverse(int x) {
        //此题需要注意整数越界问题,因此先将res声明为long,注意32位的范围是0x80000000到0x7fffffff
        long res=0;
        int flag=1;
        if(x<0) {
            flag=0;
            x=-x;
        }
        while(x>0){
            int temp=x%10;
            res=res*10+temp;
            if(flag==1&&res>0x7fffffff)break;
            if(flag==0&&-res<0x80000000) break;
                
            x=x/10;
        }
        if(x>0)return 0;
        if(flag==0) res=-res;
        return (int)res;
       
        
    }
}

 

[leedcode 07]Reverse Integer

原文:http://www.cnblogs.com/qiaomu/p/4621402.html

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