Reverse Integer

题目:7 Reverse Integer


描述:

Given a 32-bit signed integer, reverse digits of an integer.

Example 1:

Input: 123
Output:  321

Example 2:

Input: -123
Output: -321

Example 3:

Input: 120
Output: 21
注意:

Assume we are dealing with an environment which could only hold integers within the32-bit signed integer range. For the purpose of this problem, assume that yourfunction returns 0 when the reversed integer overflows.


我的思路:

因为输入值x为整数,故主要可以利用字符串与整型数据相互转换的方法解决此问题。主要是利用valueOf()方法将整型数据x转化为String类型,然后用charAt()方法将其取出并将顺序颠倒,在将得到的字符数组转换成字符串,最后利用Integer.parseInt()方法将得到的字符串转换为整型数据并输出。String 类支持的方法,可以参看 Java String API 文档。

这道题主要需要注意对数据溢出的处理,即题目中要求输入值必须为32位的整型数据,输出数据也应为32位的整型数据,若不满足此要求则返回0。所以我们需要检测是否溢出。在做题时只注意到输出需为32位整型输入,而忽略了原本符合此条件的数据倒置之后的数字可能会发生溢出,所以最开始单纯用Integer.parseInt()方法将最后得到的字符串转换成整数,老是不能通过测试,提示NumberFormatException,仔细阅读了题目才解决了这个问题。


我的解决:

class Solution {
    public int reverse(int x) {
        if(x == 0)
			return 0;
		
		if(x > Integer.MAX_VALUE || x < Integer.MIN_VALUE)
			return 0;
		
        String str1 = String.valueOf(x);
        String str2 = "";
             
        if(str1.charAt(str1.length()-1) != '0'){
        	
        	char data[] = new char[str1.length()];
        	if(str1.charAt(0) == '-'){
        		data[0] = '-';
        		for(int i = str1.length()-1 ; i >0 ; i --){
        			data[str1.length() - i] = str1.charAt(i);
        		}
        		str2 = new String(data);
                
        		try{
        			int Rx = Integer.parseInt(str2.trim());
        			return Rx;
        		}catch(NumberFormatException e){
                	return 0;
                }
        	}
        	else{
        		for(int i = str1.length() - 1 ; i >= 0 ; i --){
        			data[str1.length() - 1 - i] = str1.charAt(i);
        		}
        		str2 = new String(data);
        		
        		
                try{
                	int Rx = Integer.parseInt(str2.trim());
                	return Rx;
                }catch(NumberFormatException e){
                	return 0;
                }
        	}
        	
        }
        else{
        	char data[] = new char[str1.length()-1];
        	if(str1.charAt(0) == '-'){
        		data[0] = '-';
        		for(int i = str1.length()-2 ; i > 0 ; i--){
        			data[str1.length()-1-i] = str1.charAt(i);
        		}
        		str2 = new String(data);
                try{
                	int Rx = Integer.parseInt(str2.trim());
                	return Rx;
                }catch(NumberFormatException e){
                	return 0;
                }
        	}
        	else{
        		for(int i = str1.length()-2 ; i >= 0 ; i --){
        			data[str1.length() - 2 - i] = str1.charAt(i);
        		}
        		str2 = new String(data);
                
        		try{
        			int Rx = Integer.parseInt(str2.trim());
        			return Rx;
        		}catch(NumberFormatException e){
                	return 0;
                }
        	}
        	
        }
        
        
    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
引用\[1\]和引用\[2\]提供了两种不同的解决方案来实现整数反转。这两种解决方案都是通过取余和除以10来逐位反转整数。具体来说,我们可以使用一个变量来保存反转后的数,然后循环将原始数除以10,每次取余得到个位数,然后将个位数加到反转数的末尾。最后,根据题目要求,我们需要注意一些边界情况,比如整数溢出的问题。引用\[1\]中的解决方案使用了long long类型来保存反转后的数,并在返回结果之前进行了溢出检查。而引用\[2\]中的解决方案使用了int类型,并在返回结果之前进行了溢出检查。引用\[3\]提供了另一种解决方案,使用了数学转换的方法来实现整数反转。这个解决方案使用了long类型来保存反转后的数,并在返回结果之前进行了溢出检查。根据题目要求,如果反转后的数超过了int类型的范围,我们需要返回0。因此,根据这些引用内容,我们可以得出以下答案: 答案: 整数反转可以通过取余和除以10来逐位反转。我们可以使用一个变量来保存反转后的数,然后循环将原始数除以10,每次取余得到个位数,然后将个位数加到反转数的末尾。最后,根据题目要求,我们需要注意一些边界情况,比如整数溢出的问题。根据引用\[1\]和引用\[2\]提供的解决方案,我们可以选择使用long long类型或int类型来保存反转后的数,并在返回结果之前进行溢出检查。另外,引用\[3\]提供了另一种解决方案,使用了数学转换的方法来实现整数反转。这个解决方案使用了long类型来保存反转后的数,并在返回结果之前进行了溢出检查。根据题目要求,如果反转后的数超过了int类型的范围,我们需要返回0。因此,根据这些引用内容,我们可以选择合适的解决方案来实现整数反转。 #### 引用[.reference_title] - *1* [Reverse-Interger](https://blog.csdn.net/qq_36810403/article/details/77823115)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [【LeetCode】7.Reverse Interger(简单难度)](https://blog.csdn.net/zeroheitao/article/details/118115782)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [Reverse Integer](https://blog.csdn.net/whitesun123/article/details/79614218)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值