LeetCode 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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/reverse-integer

Java

class Solution {
    public int reverse(int x) {
        // 2147483647
        //-2147483648
        int ans = 0;
        int mod = 0;
        while(x != 0){
            mod = x % 10;
            if(ans > Integer.MAX_VALUE / 10 || (ans == Integer.MAX_VALUE && mod > 7)){
                return 0;
            }
            if(ans < Integer.MIN_VALUE / 10 || (ans == Integer.MIN_VALUE && mod < -8)){
                return 0;
            }
            ans = ans * 10 + mod;
            x /= 10;
        }
        return ans;
    }
}

C语言

int reverse(int x){
    //  2147483647
    // -2147483648
    int ans = 0;
    int mod = 0;
    while(x)
    {
        mod = x % 10;
        if(ans > 2147483647 / 10 || (ans == 2147483647 / 10 && mod > 7))
            return 0;
        if(ans < -2147483648 / 10 || (ans == -2147483648 / 10 && mod < -8))
            return 0;

        ans = ans * 10 + mod;
        x /= 10;
    }
    return ans;
}

 

 

你可能感兴趣的:(LeetCode,c语言,算法,leetcode,java,职场和发展)