-
Notifications
You must be signed in to change notification settings - Fork 2
/
trie.cpp
64 lines (61 loc) · 1.21 KB
/
trie.cpp
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
const int LN = 31;
int curr=1;
int lft[LN*upperlimit];
int rgt[LN*upperlimit];
int trie[LN*upperlimit];
void insert(int n){
int node=1;
trie[node]++;
for(int i=LN-1;i>=0;i--){
int bit=(n>>i)&1;
if(bit){
if(!rgt[node])rgt[node]=++curr;
node=rgt[node];
}
else{
if(!lft[node])lft[node]=++curr;
node=lft[node];
}
trie[node]++;
}
}
void remove(int n){
int node=1;
trie[node]--;
for(int i=LN-1;i>=0;i--){
int bit=(n>>i)&1;
if(bit){
node=rgt[node];
}
else{
node=lft[node];
}
trie[node]--;
}
}
int query(int n){
int ret=0;
int node=1;
for(int i=LN-1;i>=0;i--){
int bit=(n>>i)&1;
if(bit){
if(lft[node] && trie[lft[node]]){
node=lft[node];
ret+=(1<<i);
}
else{
node=rgt[node];
}
}
else{
if(rgt[node] && trie[rgt[node]]){
node=rgt[node];
ret+=(1<<i);
}
else{
node=lft[node];
}
}
}
return ret;
}