Given a 32-bit signed integer, reverse digits of an integer.
Example 1:
Input: 123 Output: 321 Example 2:
Input: -123 Output: -321 Example 3:
Input: 120 Output: 21 Note: Assume we are dealing with an environment which could only hold integers within the 32-bit signed integer range. For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.
题目要求转置一个整数,如果转置后的整数越界了,就返回0。
思路:在关关的刷题日记79 – Leetcode 9. Palindrome Number已经写了如何转置一个整数了,只是还有细节问题注意处理:如果转置后的整数越界了,就返回0。
class Solution {
public:
int reverse(int x) {
long a=0;
while(x!=0)
{
a=a*10+x%10;
x/=10;
}
if(a>INT_MAX || a<INT_MIN)
return 0;
return a;
}
};
照顾好自己的身体,控制好自己的情绪,加油!
以上就是关关关于这道题的总结经验,希望大家能够理解,有什么问题可以在我们的专知公众号平台上交流或者加我们的QQ专知-人工智能交流群 426491390,也可以加入专知——Leetcode刷题交流群(请先加微信小助手weixinhao: Rancho_Fang)。 同时请,关注我们的公众号,获取最新关于专知以及人工智能的资讯、技术、算法等内容。扫一扫下方关注我们的微信公众号。