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

125. Valid Palindrome - Easy

时间:2018-12-18 10:55:42      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:input   not   code   OLE   car   Plan   git   lan   sid   

Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.

Note: For the purpose of this problem, we define empty string as valid palindrome.

Example 1:

Input: "A man, a plan, a canal: Panama"
Output: true

Example 2:

Input: "race a car"
Output: false

 

two pointer

注意比较char是否相同的时候先取出char再转换大小写,否则会超时

time: O(n), space: O(1)

class Solution {
    public boolean isPalindrome(String s) {
        int p1 = 0, p2 = s.length() - 1;
        while(p1 <= p2) {
            if(!Character.isLetterOrDigit(s.charAt(p1))) {
                p1++;
            }
            else if(!Character.isLetterOrDigit(s.charAt(p2))) {
                p2--;
            }
            else {
                if(Character.toLowerCase(s.charAt(p1)) != Character.toLowerCase(s.charAt(p2)))
                    return false;
                p1++;
                p2--;
            }
        }
        return true;
    }
}

 

125. Valid Palindrome - Easy

标签:input   not   code   OLE   car   Plan   git   lan   sid   

原文地址:https://www.cnblogs.com/fatttcat/p/10134964.html

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