A trie node consists of a character, a flag marking the character if it completes a word and an array / hashTable of all of it's children nodes / characters.
Files: TrieNode | Test
A trie node consists of a character, a flag marking the character if it completes a word and an array / hashTable of all of it's children nodes / characters.
Files: TrieNode | Test