forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
57 lines (53 loc) · 1.43 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
52
53
54
55
56
57
class Solution {
private Trie trie;
public List<String> findAllConcatenatedWordsInADict(String[] words) {
Arrays.sort(words, Comparator.comparingInt(String::length));
List<String> ans = new ArrayList<>();
trie = new Trie();
for (String word : words) {
if ("".equals(word)) {
continue;
}
if (dfs(word, 0)) {
ans.add(word);
} else {
insert(word);
}
}
return ans;
}
private boolean dfs(String word, int u) {
if (word.length() == u) {
return true;
}
Trie node = trie;
for (int i = u; i < word.length(); ++i) {
int idx = word.charAt(i) - 'a';
node = node.children[idx];
if (node == null) {
return false;
}
if (node.isEnd) {
if (dfs(word, i + 1)) {
return true;
}
}
}
return false;
}
private void insert(String word) {
Trie node = trie;
for (char c : word.toCharArray()) {
int idx = c - 'a';
if (node.children[idx] == null) {
node.children[idx] = new Trie();
}
node = node.children[idx];
}
node.isEnd = true;
}
}
class Trie {
Trie[] children = new Trie[26];
boolean isEnd;
}