feat: allow skips up to 8 characters long
This commit is contained in:
parent
4bcdd5c4d9
commit
88ea0db2ee
4 changed files with 224 additions and 196 deletions
|
|
@ -4,6 +4,7 @@
|
|||
#define ALPHABET_SIZE 256
|
||||
#define DELIMITER '\0'
|
||||
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
|
||||
#define TRIE_MAX_SKIP_SIZE 8
|
||||
|
||||
/**
|
||||
* The implementation of a Ternary Trie.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue