LeetCode
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
For example,
"A man, a plan, a canal: Panama"
is a palindrome."race a car"
is not a palindrome.
Note:
Have you consider that the string might be empty? This is a good question to ask during an interview.
Have you consider that the string might be empty? This is a good question to ask during an interview.
For the purpose of this problem, we define empty string as valid palindrome.
Solution: Two Pointers
when you see this question, you should intuitively come out an two pointers solution, however, only alphanumeric characters need be considered depend on the question's description, so we should use relative elegant way to check the validity of each character.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. | |
For example, | |
"A man, a plan, a canal: Panama" is a palindrome. | |
"race a car" is not a palindrome. | |
Note: | |
Have you consider that the string might be empty? This is a good question to ask during an interview. | |
For the purpose of this problem, we define empty string as valid palindrome. | |
*/ | |
public class ValidPalindrome { | |
public boolean isPalindrome(String s) { | |
if (s==null){ | |
return false; | |
} | |
if (s.length()==0){ | |
return true; | |
} | |
s=s.toLowerCase(); | |
int left=0; | |
int right=s.length()-1; | |
while(left<right){ | |
// Skip all invalid character | |
while(left<right && !isValid(s.charAt(left))) | |
{ | |
left++; | |
} | |
// Skip all invalid character | |
while( left<right && !isValid(s.charAt(right))) | |
{ | |
right--; | |
} | |
if (s.charAt(left)!=s.charAt(right)) return false; | |
left++; | |
right--; | |
} | |
return true; | |
} | |
// check if current character is valid | |
private boolean isValid(char c){ | |
if ('a'<=c && c<='z') return true; | |
if ('0'<=c && c<='9') return true; | |
return false; | |
} | |
} |
No comments:
Post a Comment