验证回文串

给定一个字符串,验证它是否是回文串,只考虑字母和数字字符,可以忽略字母的大小写。

说明:本题中,我们将空字符串定义为有效的回文串。

示例 1:

输入: "A man, a plan, a canal: Panama"
输出: true
示例 2:

输入: "race a car"
输出: false

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/valid-palindrome
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution {
public:
    bool isPalindrome(string s) {
        if(s.empty()){
            return true;
        }
        string str = "";
        for(auto c:s){
            if(isdigit(c)||isalpha(c)){
                str += tolower(c);
            }
        }
        int len = str.size();
        int i=0,j = len-1;
        while(i<j){
            if(str[i]!=str[j]){
                return false;
            }
            ++i;
            --j;
        }
        return true;
    }
};

作者:he-zi-11
链接:https://leetcode-cn.com/problems/valid-palindrome/solution/yan-zheng-hui-wen-chuan-by-he-zi-11/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

你可能感兴趣的:(验证回文串)