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

[LeetCode]Reverse Integer

时间:2014-07-03 16:36:33      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:blog   java   2014   io   leetcode   res   

题目:给定一个数字,求出反转后的数字

注意的点:10100输出101,-123456=-654321,-123456789=异常溢出(程序退出)

public class Solution {
    public int reverse(int x) {
	    	long result = 0;
	        boolean isNegative = false;
	        if (x < 0) {
	        	x = -x;
	        	isNegative = true;
	        }
	        
	        while (x > 0) {
	        	result = result*10 + x%10;
	        	x /= 10;
	        }
	        if (result < 0x7fffffff) {
	        	// 2^31-1 = 0x7fffffff
	        	if (!isNegative) {
	        		return (int)result;
	        	} else {
	        		return -(int)result;
	        	}
	        } else {
	        	// overflow
	        	System.exit(1);
	        	return 0;
	        }
	    }
}

[LeetCode]Reverse Integer,布布扣,bubuko.com

[LeetCode]Reverse Integer

标签:blog   java   2014   io   leetcode   res   

原文地址:http://blog.csdn.net/yeweiouyang/article/details/36632717

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