-
Notifications
You must be signed in to change notification settings - Fork 0
/
longestPalindrome_409.java
61 lines (60 loc) · 1.78 KB
/
longestPalindrome_409.java
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
import java.util.HashMap;
import java.util.Map;
//遍历hashmap的两种高效方法
class longestPalindrome_409 {
public int longestPalindrome(String s) {
char[] str = s.toCharArray();
Map<Character, Integer> map = new HashMap<>();
// Sum sum = new Sum();
int sum = 0;
//boolean alone = false;
for (char c : str) {
map.put(c, map.getOrDefault(c, 0) + 1);
}
for (Map.Entry<Character, Integer> entry : map.entrySet()) {
sum += entry.getValue() / 2 * 2;
if (sum % 2 == 0 && entry.getValue() % 2 == 1) {
sum++;
}
// if (entry.getValue() % 2 == 0) {
// sum += entry.getValue();
// }
// else {
// alone = true;
// sum += entry.getValue() - 1;
// }
}
return sum;
//return alone ? sum+1 : sum;
// map.entrySet().stream().forEach((entry) -> {
// if (entry.getValue() % 2 == 0) {
// sum.add(entry.getValue());
// }
// else {
// sum.alone();
// sum.add(entry.getValue()-1);
// }
// });
//return sum.getAlone() ? sum.getCount()+1: sum.getCount();
}
// class Sum{
// private int count;
// private boolean alone;
// Sum() {
// this.count = 0;
// this.alone = false;
// }
// public void add(int a) {
// count += a;
// }
// public void alone() {
// this.alone = true;
// }
// public int getCount() {
// return count;
// }
// public boolean getAlone() {
// return alone;
// }
// }
}