题目描述:
给定一个字符串,验证它是否是回文串,只考虑字母和数字字符,可以忽略字母的大小写。
说明:本题中,我们将空字符串定义为有效的回文串。
示例 1:
输入: “A man, a plan, a canal: Panama”
输出: true
示例 2:
输入: “race a car”
输出: false
分析:首先转换为小写,方便比较;之后将字符串变为字符数组,设置left和right,从两端进行比较。不是数字或者字母字符就跳过。
class Solution {
public boolean isPalindrome(String s) {
s = s.toLowerCase();
char[] temp = s.toCharArray();
int right = temp.length-1;
int left = 0;
while(left < right){
if((temp[left] < 48) || (temp[left] > 57 && temp[left] < 97) || (temp[left] > 122)){
left ++;
}else if((temp[right] < 48) || (temp[right] > 57 &&temp[right] < 97) || (temp[right] > 122)){
right --;
}else{
if(temp[left] == temp[right]){
left++;
right--;
}else{
return false;
}
}
}
return true;
}
}