美文网首页
125. Valid Palindrome

125. Valid Palindrome

作者: 夜皇雪 | 来源:发表于2016-11-24 10:47 被阅读0次
    public class Solution {
        public boolean isPalindrome(String s) {
            if(s.length()==0) return true;
            int start=0,end=s.length()-1;
            while(start<end){
                char head=s.charAt(start);
                char tail=s.charAt(end);
                if(!Character.isLetterOrDigit(head)) start++;
                else if(!Character.isLetterOrDigit(tail)) end--;
                else{
                    if(Character.toLowerCase(tail)!=Character.toLowerCase(head)) return false;
                    else {
                        start++;
                        end--;
                    }
                }
            }
            return true;
        }
    }
    

    相关文章

      网友评论

          本文标题:125. Valid Palindrome

          本文链接:https://www.haomeiwen.com/subject/tgjbpttx.html