forked from liuyubobobo/Play-with-Data-Structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrieR.java
122 lines (94 loc) · 3.16 KB
/
TrieR.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import java.util.TreeMap;
/// TrieR 是 Trie in Recursion的意思
/// TrieR将使用递归的方式,实现我们在这一章所讲解的Trie的基本功能
public class TrieR {
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;
private int size;
public TrieR(){
root = new Node();
size = 0;
}
// 获得Trie中存储的单词数量
public int getSize(){
return size;
}
// 向Trie中添加一个新的单词word
public void add(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;
size ++;
}
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 contains(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 isPrefix(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);
}
// 删除word, 返回是否删除成功, 递归算法
public boolean remove(String word){
if(word.equals(""))
return false;
return remove(root, word, 0);
}
// 在以Node为根的Trie中删除单词word[index...end),返回是否删除成功, 递归算法
private boolean remove(Node node, String word, int index){
if(index == word.length()){
if(!node.isWord)
return false;
node.isWord = false;
size --;
return true;
}
char c = word.charAt(index);
if(!node.next.containsKey(c))
return false;
boolean ret = remove(node.next.get(c), word, index + 1);
Node nextNode = node.next.get(c);
if(!nextNode.isWord && nextNode.next.size() == 0)
node.next.remove(word.charAt(index));
return ret;
}
}