回文数

方法一:

class Solution {
public:
    bool isPalindrome(int x) {
        if(x<0)
            return false;
        int count=0;  //用来记录x的位数
        int num;    //每一位的数字
        int y[10];    //声明一个数组用来存每一位的数字
        while(x!=0)
        {
            num=x%10;
            x=(x-num)/10;
            count++;
            y[count-1]=num;
        }   //取每一位的数字逆序存到数组里
        int left=0;   //左下标
        int right=count-1;  //右下标
        while(left<=right)
        {
            if(y[left]!=y[right])
                return false;
            left++;
            right--;
        }
        return true;
    }
};

方法二:

public class Solution {
    public bool IsPalindrome(int x) {
        // 特殊情况:
        // 如上所述,当 x < 0 时,x 不是回文数。
        // 同样地,如果数字的最后一位是 0,为了使该数字为回文,
        // 则其第一位数字也应该是 0
        // 只有 0 满足这一属性
        if(x < 0 || (x % 10 == 0 && x != 0)) {
            return false;
        }

        int revertedNumber = 0;
        while(x > revertedNumber) {
            revertedNumber = revertedNumber * 10 + x % 10;
            x /= 10;
        }

        // 当数字长度为奇数时,我们可以通过 revertedNumber/10 去除处于中位的数字。
        // 例如,当输入为 12321 时,在 while 循环的末尾我们可以得到 x = 12,revertedNumber = 123,
        // 由于处于中位的数字不影响回文(它总是与自己相等),所以我们可以简单地将其去除。
        return x == revertedNumber || x == revertedNumber/10;
    }
}

原文地址:https://www.cnblogs.com/wzhtql/p/10216256.html