LeetCode 7 Reverse Integer 这道题被血虐

本文介绍了如何使用迭代方法在不溢出的情况下反转整数,包括处理特定边界情况的技巧,并探讨了算法在不同场景下的应用,如atoi转换。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Reverse digits of an integer.

Example1: x = 123, return 321
Example2: x = -123, return -321

click to show spoilers.

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.

解法:

public int reverse1(int x){
    	int px=0;
    	while(x!=0)
    	 {
    	    if(px>Integer.MAX_VALUE/10 || px<Integer.MIN_VALUE/10)return 0;
    	    px=px*10+x%10;
    	    x=x/10;
    	}
    	return px; 
    }

十分简单的算法,如果直接用暴力法整型转字符串来做,则会溢出。在限定如上述的情况下,满足OJ上的测试用例。对px迭代测试。
这个算法最精华之处在于,迭代到最大值以及最小值的十分之一的时候,可以合理判断是否越界。 若越界则返回0.这个处理方法可以沿用到leetcode的
String to Integer (atoi)这道题目

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值