LeetCode刷题-007反转整数
Posted nkqlhqc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode刷题-007反转整数相关的知识,希望对你有一定的参考价值。
给定一个 32 位有符号整数,将整数中的数字进行反转。
示例 1:
输入 : 123
输出 : 321
示例 2:
输入 : ‐123
输出 : ‐321
示例 3:
输入 : 120
输出 : 21
注意 :
假设我们的环境只能存储 32 位有符号整数,其数值范围是 [?2 31 , 2 31 ? 1]。根据这个假设,如果反转后的整数溢出,则返回 0。
1 class Solution { 2 public: 3 int reverse(int x) { 4 const int int_max=0x7fffffff; 5 const int int_min=0x80000000; 6 long long anwser=0; 7 while(x!=0) 8 { 9 anwser=anwser*10+(x%10); 10 x/=10; 11 } 12 if(anwser<int_min || anwser>int_max) 13 { 14 anwser=0; 15 } 16 return anwser; 17 } 18 };
以上是关于LeetCode刷题-007反转整数的主要内容,如果未能解决你的问题,请参考以下文章