7. 整数反转-数学

Posted hequnwang10

tags:

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

一、题目描述

给你一个 32 位的有符号整数 x ,返回将 x 中的数字部分反转后的结果。

如果反转后整数超过 32 位的有符号整数的范围 [−231, 231 − 1] ,就返回 0。

假设环境不允许存储 64 位整数(有符号或无符号)

示例 1:
输入:x = 123
输出:321
示例 2:
输入:x = -123
输出:-321
示例 3:
输入:x = 120
输出:21
示例 4:
输入:x = 0
输出:0

二、解题

数学

这题需要判断是否溢出

class Solution 
    public int reverse(int x) 
        //这题防止溢出
        int res = 0;
        while(x != 0)
            //判断是否溢出
            if(res < Integer.MIN_VALUE / 10 || res > Integer.MAX_VALUE / 10)
                return 0;
            
            int digit = x % 10;
            x /= 10;
            res = res * 10 + digit;
        
        return res;
    

时间复杂度:O(log∣x∣)。翻转的次数即 x 十进制的位数。

空间复杂度:O(1)。

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

7. 整数反转-数学

LeetCode#7 整数反转(数学)

LeetCode 7 整数反转[数学] HERODING的LeetCode之路

LeetCode 7. 整数反转

小Y学算法⚡️每日LeetCode打卡⚡️——7.整数反转

力扣7.整数翻转