[LeetCode] 反转整数

Posted blog_thyin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] 反转整数相关的知识,希望对你有一定的参考价值。

题目:

给定一个 32 位有符号整数,将整数中的数字进行反转。

示例 1:

输入: 123
输出: 321
 示例 2:

输入: -123
输出: -321
示例 3:

输入: 120
输出: 21
注意:

假设我们的环境只能存储 32 位有符号整数,其数值范围是 [−231,  231 − 1]。根据这个假设,如果反转后的整数溢出,则返回 0。

  

思路:

我没有想更多的办法,因为以前用过StringBuffer里面的reserve方法,索性这里也试试

反转之后听过Integer.parseInt转为整数,然后catch异常,有异常就说明溢出,返回0

代码:

int t = Math.abs(x);
        StringBuffer s = new StringBuffer();
        s.append(t);
        int a = x < 0?-1:1;
        try {
            a = a * Integer.parseInt(s.reverse().toString());
        }catch (Exception e){
            return 0;
        }
        return a;

  

效果还不错,30ms

 

以上是关于[LeetCode] 反转整数的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 7. 整数反转-简单

LeetCode7. 整数反转python3

LeetCode7. 整数反转

一起刷LeetCode整数反转

leetcode7整数反转

Leetcode 7.反转整数 By Python