【Leetcode】9. Palindrome Number 判断一个数字是否是回文数字

1. 题目

Determine whether an integer is a palindrome. Do this without extra space.

2. 思路

反转后和自身比较是否相等。不需要考虑溢出,因为如果是回文就不会溢出。如果溢出一定不是。

3. 代码

class Solution {
public:
    bool isPalindrome(int x) {
        return x == reverse(x);
    }
    int reverse(int x) {
        int flag = 1;
        int ax = x;
        if (x<0) {
            ax = -x;
        }
        int r = 0;
        while (ax > 0) {
            r = r * 10 + ax % 10;
            ax /= 10;
        }
        return r * flag;
    }
};
    原文作者:knzeus
    原文地址: https://segmentfault.com/a/1190000007275072
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞