-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtrie.h
487 lines (412 loc) · 9.07 KB
/
trie.h
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
/*
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| https://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Lochemem Bruno Michael |
+----------------------------------------------------------------------+
*/
#ifndef TRIE_H
#define TRIE_H
#include <unordered_map>
#include <utility>
#include <cstddef>
#include <string>
#include <htrie_map.h>
namespace trie
{
struct NodeVal
{
enum
{
isString,
isBool,
isLong,
isFloat,
isNull,
isUndefined
} type;
union
{
const char *strv;
bool bv;
long lv;
float fv;
std::nullptr_t nullv;
};
};
struct TrieNode
{
std::unordered_map<char, TrieNode *> children;
NodeVal val;
bool isLeaf;
// might be controversial
std::string history;
};
// trie map type alias
typedef std::unordered_map<std::string, NodeVal> triemap;
/**
* @brief creates new trie
*
* @return TrieNode*
*/
TrieNode *newTrie()
{
auto trie = new TrieNode;
trie->isLeaf = false;
return trie;
}
/**
* @brief inserts item into trie
*
* @param trie
* @param key
* @param val
*/
void insertItem(TrieNode *&trie, const char *key, NodeVal val)
{
if (trie == nullptr)
{
trie = newTrie();
}
TrieNode *current = trie;
std::string history;
while (*key)
{
if (current->children.find(*key) == current->children.end())
{
current->children[*key] = newTrie();
}
history.push_back(*key);
current = current->children[*key];
key++;
}
history.shrink_to_fit(); // reduce memory usage
current->val = val;
current->history = history;
current->isLeaf = true;
}
/**
* @brief checks if key exists in trie
*
* @param trie
* @param key
* @return true
* @return false
*/
bool keyExists(TrieNode *&trie, const char *key)
{
if (trie == nullptr)
{
return false;
}
TrieNode *current = trie;
while (*key)
{
current = current->children[*key];
if (current == nullptr)
{
return false;
}
key++;
}
return current->isLeaf;
}
/**
* @brief returns a trie value that corresponds to a specified key
*
* @param trie
* @param key
* @return NodeVal
*/
NodeVal fetchByKey(TrieNode *&trie, const char *key)
{
NodeVal ret;
ret.type = NodeVal::isNull;
ret.nullv = nullptr;
if (trie == nullptr)
{
return ret;
}
TrieNode *current = trie;
while (*key)
{
current = current->children[*key];
if (current == nullptr)
{
return ret;
}
key++;
}
return current->val;
}
/**
* @brief deletes item from trie
*
* @param trie
* @param key
* @return true
* @return false
*/
bool deleteItem(TrieNode *&trie, const char *key)
{
TrieNode *current = trie;
while (*key)
{
TrieNode *next = current->children[*key];
if (next != nullptr)
{
current->children.erase(*key);
}
current = next;
key++;
}
return true;
}
/**
* @brief checks if a trie node has children
*
* @param trie
* @return true
* @return false
*/
bool hasChildren(TrieNode *&trie)
{
for (auto idx : trie->children)
{
if (idx.second != nullptr)
{
return true;
}
}
return false;
}
/**
* @brief extracts the trie's branches into key-value pairs
*
* @param trie
* @return triemap
*/
triemap getPairs(TrieNode *&trie)
{
triemap res;
TrieNode *current = trie;
for (auto idx : current->children)
{
if (idx.second != nullptr)
{
std::string history = idx.second->history;
history.shrink_to_fit();
NodeVal val = idx.second->val;
if (val.type != NodeVal::isUndefined)
{
// for the root node
if (history.size() != 0)
{
res[history] = val;
}
}
if (!hasChildren(idx.second))
{
res[history] = val;
}
else
{
auto other = getPairs(idx.second);
res.insert(other.begin(), other.end());
}
}
}
return res;
}
/**
* @brief checks if a string exists inside another
*
* @param needle
* @param haystack
* @return true
* @return false
*/
bool strExists(std::string needle, std::string haystack)
{
std::string::size_type size = haystack.find(needle);
return size == std::string::npos ? false : true;
}
/**
* @brief searches trie for entries that match a specified prefix
*
* @param trie
* @param prefix
* @return triemap
*/
triemap prefixLookup(TrieNode *&trie, std::string prefix)
{
triemap res; // TrieNode *res = newTrie();
TrieNode *current = trie;
for (auto idx : current->children)
{
if (idx.second != nullptr)
{
NodeVal val = idx.second->val;
std::string history = idx.second->history;
history.shrink_to_fit();
bool prefixCheck = strExists(prefix, history);
if (val.type != NodeVal::isUndefined && prefixCheck)
{
if (history.size() != 0)
{
res[history] = val;
}
}
if (!hasChildren(idx.second) && prefixCheck)
{
res[history] = val;
}
else
{
auto other = prefixLookup(idx.second, prefix);
res.insert(other.begin(), other.end());
}
}
}
return res;
}
class Trie
{
private:
TrieNode *trie = nullptr;
public:
Trie() {}
Trie(triemap trmap)
{
trie = newTrie();
// secondary iteration might be costly
for (auto idx : trmap)
{
insertItem(trie, idx.first.c_str(), idx.second);
}
}
Trie(TrieNode *obj) : trie(obj) {}
~Trie() { trie = nullptr; }
bool insert(const char *key, NodeVal val)
{
insertItem(trie, key, val);
return keyExists(trie, key);
}
bool check(const char *key)
{
return keyExists(trie, key);
}
NodeVal extract(const char *key)
{
return fetchByKey(trie, key);
}
bool remove(const char *key)
{
return deleteItem(trie, key);
}
triemap all()
{
return getPairs(trie);
}
int size()
{
return getPairs(trie).size();
}
triemap prefixSearch(std::string prefix)
{
return prefixLookup(trie, prefix);
}
Trie *merge(triemap other)
{
for (auto idx = other.begin(); idx != other.end(); ++idx)
{
insertItem(trie, idx->first.c_str(), idx->second);
}
return new Trie(trie);
}
};
// HAT trie type alias
typedef tsl::htrie_map<char, NodeVal> Htrie;
class HatTrie
{
private:
Htrie hatTrie;
public:
// HatTrie() {}
HatTrie(float factor = 8.0f, size_t threshold = 16384)
{
hatTrie.max_load_factor(factor);
hatTrie.burst_threshold(threshold);
}
HatTrie(Htrie hat) : hatTrie(hat) {}
~HatTrie()
{
hatTrie.clear();
}
bool check(const char *key)
{
return hatTrie.find(key) != hatTrie.end();
}
bool insert(const char *key, NodeVal val)
{
hatTrie[key] = val;
return check(key);
}
NodeVal extract(const char *key)
{
return hatTrie.at(key);
}
bool remove(const char *key)
{
hatTrie.erase(key);
return check(key) ? false : true;
}
int size()
{
return hatTrie.size();
}
Htrie all()
{
return hatTrie;
}
int prefixDelete(std::string prefix)
{
return hatTrie.erase_prefix(prefix);
}
Htrie::iterator longestPrefix(const char *prefix)
{
return hatTrie.longest_prefix(prefix);
}
void shrinkTrie()
{
hatTrie.shrink_to_fit();
}
void adjustLoadFactor(float factor = 8.0f)
{
hatTrie.max_load_factor(factor);
}
void adjustBurstThreshold(size_t threshold = 16384)
{
hatTrie.burst_threshold(threshold);
}
HatTrie *merge(Htrie map)
{
std::string buffer;
for (auto idx = map.begin(); idx != map.end(); ++idx)
{
idx.key(buffer);
hatTrie[buffer] = idx.value();
}
return new HatTrie(hatTrie);
}
};
}; // namespace trie
#endif // TRIE_H