leetcode 整数反转

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

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

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

输入:x = 123
输出:321

示例 2:

输入:x = -123
输出:-321

示例 3:

输入:x = 120
输出:21

示例 4:

输入:x = 0
输出:0

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/reverse-integer
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
public:
    int reverse(int x) {
        int res = 0;
        while(x != 0)
        {
            if(res > INT_MAX / 10 || res < INT_MIN /10) return 0 ;
            int a = x % 10;
            x/=10;
            res = res*10 + a;
        }
        return res;
    } 
};
posted @ 2021-09-05 21:20  simonlma  阅读(13)  评论(0)    收藏  举报