forked from liuyubobobo/Play-with-Data-Structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRandomizedSet_TrieR.java
193 lines (148 loc) · 5.17 KB
/
RandomizedSet_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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/// Leetcode 380. Insert Delete GetRandom O(1)
/// https://leetcode.com/problems/insert-delete-getrandom-o1/description/
///
/// 使用380号问题测试我们的代码
/// 该版本代码用于测试递归实现的TrieRMap
import java.util.ArrayList;
import java.util.Random;
import java.util.TreeMap;
public class RandomizedSet_TrieR {
private class TrieRMap {
private class Node{
public boolean isWord;
public TreeMap<Character, Node> next;
public int val;
public Node(boolean isWord, int val){
this.isWord = isWord;
next = new TreeMap<>();
this.val = val;
}
public Node(){
this(false, -1);
}
}
private Node root;
private int size;
public TrieRMap(){
root = new Node();
size = 0;
}
// 获得Trie中存储的单词数量
public int getSize(){
return size;
}
// 向Trie中添加一个新的单词word
public void add(String word, int val){
add(root, word, 0, val);
}
// 向以node为根的Trie中添加word[index...end), 递归算法
private void add(Node node, String word, int index, int val){
if(index == word.length()){
if(!node.isWord){
node.isWord = true;
size ++;
}
node.val = val;
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, val);
}
// 查询单词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);
}
// 查询单词word在Trie中所对应的值
public int get(String word){
return get(root, word, 0);
}
// 在以node为根的Trie中查询单词word[index...end)是否存在, 递归算法
private int get(Node node, String word, int index){
if(index == word.length())
return node.val;
char c = word.charAt(index);
if(node.next.get(c) == null)
throw new RuntimeException("Can not get");
return get(node.next.get(c), word, index + 1);
}
// 删除word, 返回是否删除成功, 递归算法
public boolean remove(String word){
if(word.equals(""))
return false;
return remove(root, word, 0);
}
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;
}
}
TrieRMap map;
ArrayList<Integer> nums;
/** Initialize your data structure here. */
public RandomizedSet_TrieR() {
map = new TrieRMap();
nums = new ArrayList<>();
}
/** Inserts a value to the set. Returns true if the set did not already contain the specified element. */
public boolean insert(int val) {
String key = Integer.toString(val);
if(map.contains(key))
return false;
nums.add(val);
int index = nums.size() - 1;
map.add(key, index);
return true;
}
/** Removes a value from the set. Returns true if the set contained the specified element. */
public boolean remove(int val) {
String key = Integer.toString(val);
if(!map.contains(key))
return false;
int index = map.get(key);
map.remove(key);
int num = nums.get(nums.size() - 1);
nums.remove(nums.size() - 1);
if(num != val) {
nums.set(index, num);
map.add(Integer.toString(num), index);
}
return true;
}
/** Get a random element from the set. */
public int getRandom() {
Random random = new Random();
int index = random.nextInt(nums.size());
return nums.get(index);
}
public static void main(String[] args){
RandomizedSet_TrieR rs = new RandomizedSet_TrieR();
rs.insert(0);
rs.remove(0);
rs.insert(-1);
rs.remove(0);
}
}