-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLongestPalindrome.java
More file actions
53 lines (49 loc) · 1.33 KB
/
Copy pathLongestPalindrome.java
File metadata and controls
53 lines (49 loc) · 1.33 KB
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
package easy;
import java.util.HashSet;
import java.util.Set;
/**
* ClassName: LongestPalindrome.java
* Author: chenyiAlone
* Create Time: 2019/8/7 23:06
* Description: No.409 Longest Palindrome
* 1. 题目的意思能构成回文!!!
* 2. 成对的肯定能够组成回文
* 3. 如果最后 set 不为空,证明有至少有一个奇数个的字符,可以加在回文串的中间,cnt * 2 + 1
* 否则 cnt * 2
*
*
* Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those letters.
*
* This is case sensitive, for example "Aa" is not considered a palindrome here.
*
* Note:
* Assume the length of given string will not exceed 1,010.
*
* Example:
*
* Input:
* "abccccdd"
*
* Output:
* 7
*
* Explanation:
* One longest palindrome that can be built is "dccaccd", whose length is 7.
*
*/
public class LongestPalindrome {
public int longestPalindrome(String s) {
Set<Character> set = new HashSet<>();
int cnt = 0;
for (char c : s.toCharArray()) {
if (set.contains(c)) {
set.remove(c);
cnt++;
} else {
set.add(c);
}
}
if (!set.isEmpty()) return cnt * 2 + 1;
return cnt * 2;
}
}