-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.java
51 lines (47 loc) · 1.39 KB
/
Solution.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
class Solution {
Map<Character, Character> map = new HashMap<>();
{
map.put('1', '1');
map.put('0', '0');
map.put('6', '9');
map.put('9', '6');
map.put('8', '8');
}
public List<String> findStrobogrammatic(int n) {
if (n == 1) {
return Arrays.asList("0", "1", "8");
}
List<String> ans = new ArrayList<>();
dfs(n, ans, "");
return ans;
}
private void dfs(int n, List<String> ans, String tmp) {
if (tmp.length() == (n + 1) / 2) {
fillAns(n, ans, tmp);
return;
}
for (char c : map.keySet()) {
int num = c - '0';
// 首位不能是0
if (tmp.length() == 0 && num == 0) {
continue;
}
// 奇数的中间位只能是 0 1 8
if (n % 2 != 0 && tmp.length() == n / 2 && !(num == 0 || num == 1 || num == 8)) {
continue;
}
dfs(n, ans, tmp + num);
}
}
private void fillAns(int n, List<String> ans, String tmp) {
char[] a = new char[n];
for (int i = 0; i < tmp.length(); i++) {
a[i] = tmp.charAt(i);
a[n - i - 1] = map.get(tmp.charAt(i));
}
if (n % 2 != 0) {
a[tmp.length() - 1] = tmp.charAt(tmp.length() - 1);
}
ans.add(new String(a));
}
}