leetcode-----125. 验证回文串

Posted 景云

tags:

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

算法

时间复杂度:(O(logn))

代码

class Solution {
public:
    bool isalpha(char c) {
        if ((c >= ‘a‘ && c <= ‘z‘) || (c >= ‘A‘ && c <= ‘Z‘)) return true;
        else return false;
    }

    bool isdigit(int c) {
        if (c >= ‘0‘ && c <= ‘9‘) return true;
        else return false;
    }


    bool isPalindrome(string s) {
        if (s == "") return true;
        int i = 0, j = s.size() - 1;
        while (i < j) {
            if (!isalpha(s[i]) && !isdigit(s[i])) {
                i++;
                continue;
            }
            if (!isalpha(s[j]) && !isdigit(s[j])) {
                j--;
                continue;
            }

            if (toupper(s[i]) != toupper(s[j])) return false;
            i++, j--;
        }
        return true;
    }
};

以上是关于leetcode-----125. 验证回文串的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode-125-验证回文串

Leetcode 125.验证回文串 By Python

Leetcode125. 验证回文串(JAVA双指针)

LeetCode 125. 验证回文串

LeetCode 125. 验证回文串

leetcode 125. 验证回文串