Given a string s, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
给定一个字符串,验证它是否是回文串,只考虑字母和数字字符,可以忽略字母的大小写。
输入 | 输出 |
---|---|
s = "A man, a plan, a canal: Panama" | true |
s = "race a car" | false |
简单粗暴,样例通过,但是测试超时
class Solution { public: bool isPalindrome(string s) { int i = 0, j = s.size() - 1; while (i < j) { while (s[i] < 65 || (s[i] > 90 && s[i] < 97) || s[i] > 122) { ++i; } while (s[j] < 65 || (s[j] > 90 && s[j] < 97) || s[j] > 122) { --j; } int temp = s[i] - s[j]; if (temp != 32 && temp != -32 && temp != 0) { return false; } ++i; --j; } return true; } };
参考:https://leetcode.com/problems/valid-palindrome/discuss/40048/Here's-a-clean-C%2B%2B-solution
class Solution { public: bool isPalindrome(string s) { for (int i = 0, j = s.size() - 1; i < j; i++, j--) { // Move 2 pointers from each end until they collide while (isalnum(s[i]) == false && i < j) i++; // Increment left pointer if not alphanumeric while (isalnum(s[j]) == false && i < j) j--; // Decrement right pointer if no alphanumeric if (toupper(s[i]) != toupper(s[j])) return false; // Exit and return error if not match } return true; } };
注意:isalnum的用法:https://www.cplusplus.com/reference/cctype/isalnum/