-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrie.cpp
117 lines (107 loc) · 2.22 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
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
//M is the max length of the string to be inserted.
//A is the total number of distinct charaters.
struct Trie {
int G = 0;
int t[M][A] = {};
int f[M] = {};
void add(const string& s) {
int x = 0;
for (int i = 0; i < s.size(); i++) {
int c = s[i] - 'a';
if (!t[x][c]) {
t[x][c] = ++G;
}
x = t[x][c];
f[x] += 1;
}
}
int get(const string& s) {
int x = 0;
int res = 0;
for (int i = 0; i < s.size(); i++) {
int c = s[i] - 'a';
if (!t[x][c]) {
break;
}
x = t[x][c];
res += f[x];
}
return res;
}
};
//for numbers
const int M=(2e5+1)*30;//as per the problem
const int A=2;
struct Trie
{
int n=0;
int t[M][A]={};
int pre[M]={};
void init()
{
for(int i=0;i<M;i++)
for(int j=0;j<A;j++)
t[i][j]=-1;
}
void add(int x)
{
int p=0;
pre[p]++;
for(int i=29;i>=0;i--)
{
int b=(x>>i)&1;
if(t[p][b]==-1)
{
t[p][b]=++n;
}
p=t[p][b];
pre[p]++;
}
}
void remove(int x)
{
int p=0;
for(int i=29;i>=0;i--)
{
int b=(x>>i)&1;
if(pre[t[p][b]]>1)
{
p=t[p][b];
pre[p]--;
}
else
{
pre[t[p][b]]--;
int nn=t[p][b];
t[p][b]=-1;
p=nn;
}
}
}
int getmax_xor(int x)
{
int p=0;
int ret=0;
for(int i=29;i>=0;i--)
{
int b=(x>>i)&1;
if(t[p][b]!=-1 && t[p][b^1]!=-1)
{
ret|=(1<<i);
p=t[p][b^1];
}
else if(t[p][b]==-1 && t[p][b^1]==-1)
break;
else if(t[p][b]==-1 && t[p][b^1]!=-1)
{
p=t[p][b^1];
ret|=(1<<i);
}
else
{
p=t[p][b];
}
}
return ret;
}
};