c_cpp 9.回文数

Posted

tags:

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

//利用数字逆序进行对比
class Solution {
public:
    bool isPalindrome(int x) {
        if(x < 0) return false;
        if(x == 0) return true;
        int rst = 0,num = x;
        
        while(num != 0){
            rst = rst * 10 + num % 10;
            num /= 10;
        }
        return (rst == x) ? true:false;
    }
};
//将数字转换为字符串,然后头尾进行比较
//124ms
class Solution {
public:
    bool isPalindrome(int x) {
        if(x < 0)
            return false;
        string str = to_string(x);
        int start = 0;
        int end = str.length() - 1;
        if(str.length() <= 1)
            return true;
        for(;start <= end;start++,end--)
            if(str[start] != str[end])
                return false;
        return true;
    }
};

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

c_cpp 234.回文链表 - 难度易 - 2018.8.9

LeetCode 9. 回文数

9. 回文数

9. 回文数

9. 回文数

9. 回文数