feat: allow skips up to 8 characters long

This commit is contained in:
Jef Roosens 2022-11-29 15:08:07 +01:00
parent 4bcdd5c4d9
commit 88ea0db2ee
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
4 changed files with 224 additions and 196 deletions

View file

@ -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.