Leecode07. 整数反转——Leecode大厂热题100道系列
Posted 来老铁干了这碗代码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leecode07. 整数反转——Leecode大厂热题100道系列相关的知识,希望对你有一定的参考价值。
我是小张同学,立志用最简洁的代码做最高效的表达
以下是我个人做的题解,每个题都尽量囊括了所有解法,并做到了最优解,欢迎大家收藏!留言!
传送门——>Leecode大厂热题100道系列题解
问题描述
给你一个 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
提示:
-231 <= x <= 231 - 1
附上了完整可运行代码
#include "iostream"
#include "algorithm"
#include "cmath"
using namespace std;
class Solution {
public:
int reverse(int x) {
bool flag = false;
if (x > 0) flag = !flag;
long long res = 0;
while(x) {
res = res * 10 + (x % 10);
x /= 10;
}
if(res < -pow(2, 31) || res > pow(2, 31) - 1) return 0;
return flag ? abs(res) : -abs(res);
}
};
int main() {
Solution solution;
cout << solution.reverse(1534236469);
return 0;
}
以上是关于Leecode07. 整数反转——Leecode大厂热题100道系列的主要内容,如果未能解决你的问题,请参考以下文章
leecode---07---数字整除取余操作,取余整除---翻转一个整数复件
解题报告Leecode 372. 超级次方——Leecode每日一题系列
解题报告Leecode 372. 超级次方——Leecode每日一题系列