trie
Conceptual class representation of a Trie.
trie_add()
Adds a single word to the trie.
trie_contain()
Search if a word is present in the trie.
trie_create()
Create an empty trie.
trie_delete()
Deletes a single word from the trie.
trie_find_prefix()
Finds all words that match the prefix in the trie.