验证回文串

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

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

示例 1:

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

示例 2:

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

思路

定义头尾指针,从头尾遍历判断字符是否相等(非数字/字符则跳过)。

实现代码:

class Solution {
    public boolean isPalindrome(String s) {
        s = s.toLowerCase();
        
        int i = 0; 
        int j = s.length() - 1;
        
        while (i < j && i < s.length() - 1) {
            char pre = s.charAt(i);
            char aft = s.charAt(j);
            if (! ((pre >= 'a' && pre <= 'z') || (pre >= '0' && pre <= '9'))) {
                i++;
                continue;
            }
            
            if (! ((aft >= 'a' && aft <= 'z') || (aft >= '0' && aft <= '9'))) {
                j--;
                continue;
            }
            
            if (pre != aft) {
                return false;
            }
            
            i++;
            j--;
        }                
        return true;
    }
}

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