码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-03-23 15:26:56      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:++   string   https   int   code   size   pre   ret   false   

算法

时间复杂度:\(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. 验证回文串

标签:++   string   https   int   code   size   pre   ret   false   

原文地址:https://www.cnblogs.com/clown9804/p/12552158.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!