力扣9. 回文数

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了力扣9. 回文数相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
题目跳转

class Solution {
public:
    bool isPalindrome(int x) {
        if(x<0) return false;
        string a=to_string(x);
        int n=a.size();
        for(int i=0;i<n/2;i++) 
            if(a[i]!=a[n-i-1]) return false;
        return true;
    }
};
class Solution {
public:
    bool isPalindrome(int x) {
        if(x<0) return false;
        string a=to_string(x);
        string b=a;
        reverse(a.begin(),a.end());
        return a==b;
    }
};

反向迭代器

class Solution {
public:
    bool isPalindrome(int x) {
        if(x<0) return false;
        string a=to_string(x);
        return a == string(a.rbegin(),a.rend());
    }
};

以上是关于力扣9. 回文数的主要内容,如果未能解决你的问题,请参考以下文章

9. 回文数(leetcode力扣算法 - java / rust)

9. 回文数(leetcode力扣算法 - java / rust)

9. 回文数

leetcode 9 回文数

LeetCode-9回文数

leetcode-9