其他分享
首页 > 其他分享> > LeetCode7(整数反转)

LeetCode7(整数反转)

作者:互联网

菜鸟成长逆袭之旅,爱好撸铁和撸代码,有强制的约束力,希望通过自己的努力做一个高品质人
Work together and make progress together

整数反转

给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。

示例 1:

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

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

输入: 120
输出: 21
注意:

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

class Solution {
public:
    int reverse(int x) {
		int res = 0;
		while(x!=0){
			if (abs(res) > INT_MAX/10) return 0;
			res = res *10 + x%10;
			x/=10;		
		}	
        return res;
    }
};

标签:LeetCode7,示例,int,res,整数,反转,10
来源: https://blog.csdn.net/qq_36134437/article/details/101309234