-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution2.java
38 lines (35 loc) · 948 Bytes
/
Solution2.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
class Trie {
private Trie[] children = new Trie[26];
private int cnt;
public void insert(String w) {
Trie node = this;
for (int i = 0; i < w.length(); ++i) {
int j = w.charAt(i) - 'a';
if (node.children[j] == null) {
node.children[j] = new Trie();
}
node = node.children[j];
++node.cnt;
}
}
public int search(String pref) {
Trie node = this;
for (int i = 0; i < pref.length(); ++i) {
int j = pref.charAt(i) - 'a';
if (node.children[j] == null) {
return 0;
}
node = node.children[j];
}
return node.cnt;
}
}
class Solution {
public int prefixCount(String[] words, String pref) {
Trie tree = new Trie();
for (String w : words) {
tree.insert(w);
}
return tree.search(pref);
}
}