leetcode回文数

判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。

示例 1:

输入: 121
输出: true

示例 2:

输入: -121
输出: false
解释: 从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。

示例 3:

输入: 10
输出: false
解释: 从右向左读, 为 01 。因此它不是一个回文数。
class Solution {
public:
    bool isPalindrome(int x) 
    {
        int test0=0,test1;
        test1=x;
        if(test1==0){
            return true;
        }
        if(test1<0 || test1 >= INT_MAX){
            return false;
        }
        while(test1!=0)
        {
            test0=test0*10+test1%10;
            test1=test1/10;
        }
        return test0==x;
};

猜你喜欢

转载自blog.csdn.net/weixin_39485901/article/details/89227177
今日推荐