整数反转

题目描述

给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。
注意:
假设我们的环境只能存储得下 32 位的有符号整数,则其数值范围为 [−231, 231 − 1]。请根据这个假设,如果反转后整数溢出那么就返回 0。

事例

输入: 123
输出: 321
输入: -123
输出: -321
输入: 120
输出: 21

解题方法

判断传入x值的正负,取得x的绝对值循环除10进行取余,将余数通过Stringbuilder的append方法存入Stringbuilder头部,再通过Integer.parseInt方法转为整型,通过捕获NumberFormatException异常返回0。

public int reverse(int x) {
        int a;
        boolean isPos = true;
        int res;
        if(x < 0){
            x = -x;
            isPos = false;
        }
        
        StringBuilder result = new StringBuilder();
        do{
            a = x%10;
            result.append(a); 
        }while((x=x/10) > 0);
        
        try{
            res = Integer.parseInt(result.toString());
            if(!isPos){
                return -res;
            }
            return res;
        }catch(NumberFormatException e){
            return 0;
        }
    }

你可能感兴趣的:(整数反转)