-
Notifications
You must be signed in to change notification settings - Fork 481
/
Copy path0125.cpp
48 lines (46 loc) · 990 Bytes
/
0125.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#pragma once
#include <string>
#include <iostream>
#include <cctype>
using namespace std;
static int x = []() {std::ios::sync_with_stdio(false); cin.tie(0); return 0; }();
class Solution
{
public:
bool _isEqual(char l, char r)
{
if ('A' <= l && l <= 'Z') l += 32;
if ('A' <= r && r <= 'Z') r += 32;
return l == r;
}
bool isPalindrome(string s)
{
int l = 0;
int r = s.size() - 1;
while (l < r)
{
if (!(bool)isalnum(s[l]))
{
++l;
continue;
}
if (!(bool)isalnum(s[r]))
{
--r;
continue;
}
if (!_isEqual(s[l], s[r])) return false;
else
{
++l; --r;
}
}
return true;
}
};
int main()
{
string s = "A man, a plan, a canal: Panama";
cout << Solution().isPalindrome(s) << endl;
return 0;
}