-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path267.回文排列2.java
62 lines (61 loc) · 1.85 KB
/
267.回文排列2.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
62
# 给定一个字符串 s ,返回其通过重新排列组合后所有可能的回文字符串,并去除重复的组合。
#
# 如不能形成任何回文排列时,则返回一个空列表。
#
# 示例 1:
#
# 输入: "aabb"
# 输出: ["abba", "baab"]
# 示例 2:
#
# 输入: "abc"
# 输出: []
public class Solution {
Set < String > set = new HashSet < > ();
public List < String > generatePalindromes(String s) {
int[] map = new int[128];
char[] st = new char[s.length() / 2];
if (!canPermutePalindrome(s, map))
return new ArrayList < > ();
char ch = 0;
int k = 0;
for (int i = 0; i < map.length; i++) {
if (map[i] % 2 == 1)
ch = (char) i;
for (int j = 0; j < map[i] / 2; j++) {
st[k++] = (char) i;
}
}
permute(st, 0, ch);
return new ArrayList < String > (set);
}
public boolean canPermutePalindrome(String s, int[] map) {
int count = 0;
for (int i = 0; i < s.length(); i++) {
map[s.charAt(i)]++;
if (map[s.charAt(i)] % 2 == 0)
count--;
else
count++;
}
return count <= 1;
}
public void swap(char[] s, int i, int j) {
char temp = s[i];
s[i] = s[j];
s[j] = temp;
}
void permute(char[] s, int l, char ch) {
if (l == s.length) {
set.add(new String(s) + (ch == 0 ? "" : ch) + new StringBuffer(new String(s)).reverse());
} else {
for (int i = l; i < s.length; i++) {
if (s[l] != s[i] || l == i) {
swap(s, l, i);
permute(s, l + 1, ch);
swap(s, l, i);
}
}
}
}
}