-
Notifications
You must be signed in to change notification settings - Fork 824
/
Trie208.java
82 lines (61 loc) · 2.05 KB
/
Trie208.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import java.util.TreeMap;
/// 使用Leetcode 208号问题测试我们实现的TrieR
public class Trie208 {
private class Node{
public boolean isWord;
public TreeMap<Character, Node> next;
public Node(boolean isWord){
this.isWord = isWord;
next = new TreeMap<>();
}
public Node(){
this(false);
}
}
private Node root;
public Trie208(){
root = new Node();
}
// 向Trie中添加一个新的单词word
public void insert(String word){
add(root, word, 0);
}
// 向以node为根的Trie中添加word[index...end), 递归算法
private void add(Node node, String word, int index){
if(index == word.length()){
if(!node.isWord)
node.isWord = true;
return;
}
char c = word.charAt(index);
if(node.next.get(c) == null)
node.next.put(c, new Node());
add(node.next.get(c), word, index + 1);
}
// 查询单词word是否在Trie中
public boolean search(String word){
return contains(root, word, 0);
}
// 在以node为根的Trie中查询单词word[index...end)是否存在, 递归算法
private boolean contains(Node node, String word, int index){
if(index == word.length())
return node.isWord;
char c = word.charAt(index);
if(node.next.get(c) == null)
return false;
return contains(node.next.get(c), word, index + 1);
}
// 查询是否在Trie中有单词以prefix为前缀
public boolean startsWith(String prefix){
return isPrefix(root, prefix, 0);
}
// 查询在以Node为根的Trie中是否有单词以prefix[index...end)为前缀, 递归算法
private boolean isPrefix(Node node, String prefix, int index){
if(index == prefix.length())
return true;
char c = prefix.charAt(index);
if(node.next.get(c) == null)
return false;
return isPrefix(node.next.get(c), prefix, index + 1);
}
}