【Leetcode】125. 验证回文串

题目

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

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

示例 1:

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

示例 2:

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

题解

这道题目就比较简单了,用两个指针一前一后,遇到不是字母的就直接忽略过就好了。
可能对java的一些方法不太熟悉,注释说明一下:

class Solution {
    public boolean isPalindrome(String s) {
        if (s == null) return false;
        if (s.length() == 0) return true;
        int i = 0;
        int j = s.length() - 1;
        while (i < j) {
            // isLetterOrDigit 判断是不是字母或者数字
            while (i < j && !Character.isLetterOrDigit(s.charAt(i))) i++;
            while (i < j && !Character.isLetterOrDigit(s.charAt(j))) j--;
            // toLowerCase 都转化为小写的字母
            if (Character.toLowerCase(s.charAt(i)) != Character.toLowerCase(s.charAt(j))) return false;
            i++;
            j--;
        }
        return true;
    }
}


手撕代码QQ群:805423079, 群密码:1024

你可能感兴趣的:(面试,java,算法,数据结构)