您的位置:首页 > 其它

LeetCode 125. Valid Palindrome

2016-04-10 10:11 302 查看
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.

// two pointer problem

#include <string>
#include <iostream>
using namespace std;

bool isPalindrome(string s) {
if(s.size() <= 1) return true;
int i = 0;
int j = s.size() - 1;
while(i <= j) {
if(isalnum(s[i]) && isalnum(s[j])) {
if(tolower(s[i]) == tolower(s[j])) {
i++;
j--;
continue;
} else {
return false;
}
}
if(!isalnum(s[i])) {i++;}
if(!isalnum(s[j])) {j--;}
}
return true;
}

int main(void) {
string tmp = "A man, a plan, a canal : Panama six";
bool res = isPalindrome(tmp);
cout << res << endl;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: