鱼C论坛

 找回密码
 立即注册
查看: 1637|回复: 0

[学习笔记] leetcode 7. Reverse Integer

[复制链接]
发表于 2019-8-28 05:59:52 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
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
Note:
Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−231,  231 − 1]. For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.

First try
import java.math.BigInteger;

class Solution {
    public int reverse(int x) {
        String num = Integer.toString(x);
        
        String result = "";
        
        int len = num.length();
        
        int flag = 0;
        
        if(num.substring(0,1).equals("-")){
            
            flag = 1;
            
            num = num.substring(1,len);
            
            len = len -1;
            
        } 
        
        for(int i = 0 ; i< len; i++){
            
            result = num.substring(i,i+1) + result;
        }
        
        BigInteger n = new BigInteger(result);
        
        BigInteger s = new BigInteger("-2147483648");
        BigInteger b = new BigInteger("2147483647");
        
        if(n.compareTo(s)<0  || n.compareTo(b)>0){
            
            return 0;
        }
        
        x = Integer.parseInt(result);
        
        if(flag == 1){
            
            return 0-x;
        }
        else{
            
            return x;
        }
    }
}

Second try.
class Solution {
    public int reverse(int x) {
        
        long result = 0;
        
        while(x != 0){
            
            result = result * 10 + x % 10;
            
            x = x/10;
        }
        
        if(result > 2147483647 || result < -2147483648  )
            return 0;
        
        return (int)result;
        
}
}

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 03:57

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表