-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy path0409_longest_palindrome.cpp
73 lines (66 loc) · 2.06 KB
/
0409_longest_palindrome.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
* Copyright(c) 2019 Jiau Zhang
* For more information see <https://github.com/JiauZhang/algorithms>
*
* This repo is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation
*
* It is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with THIS repo. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* https://leetcode-cn.com/problems/longest-palindrome
* 题目描述:
* 给定一个包含大写字母和小写字母的字符串
* 找到通过这些字母构造成的最长的回文串
* 在构造过程中,请注意区分大小写。比如 "Aa" 不能当做一个回文字符串
*
* 注意:
* 假设字符串的长度不会超过 1010
*
* 示例 1:
* 输入:
* "abccccdd"
*
* 输出:
* 7
*
* 解释:
* 我们可以构造的最长的回文串是"dccaccd", 它的长度是 7
*
* 解题思路:
* 既然是回文字符串,那么肯定需要成对出现,所以第一步是同时字符数
* 然后计算出现偶数次数的总和,最后再加上一个,即放在中间的字符
* 这个总数就是题解了
*/
class Solution {
public:
int longestPalindrome(string s) {
if (s.size() <= 1)
return s.size();
unsigned int hash_lower[26] = {0};
unsigned int hash_upper[26] = {0};
for (auto c: s) {
if (c <= 'Z')
hash_upper[c - 'A']++;
else
hash_lower[c - 'a']++;
}
int res = 0;
for (int i=0; i<26; i++) {
if (hash_lower[i] >= 2)
res += (hash_lower[i] & (~0x01));
if (hash_upper[i] >= 2)
res += (hash_upper[i] & (~0x01));
}
if (res < s.size())
res++;
return res;
}
};