Skip to content

Trie data structure implemented in python. A class TrieNode is created which has methods add, to add words to the trie and find to find words in a trie. Find returns a boolean to indicate if the word was found in its entirety or not, the index of the last character found in the word, the unique value given to the trie node and the last trie node…

Notifications You must be signed in to change notification settings

nxtexe/Trie-Data-Structure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

About

Trie data structure implemented in python. A class TrieNode is created which has methods add, to add words to the trie and find to find words in a trie. Find returns a boolean to indicate if the word was found in its entirety or not, the index of the last character found in the word, the unique value given to the trie node and the last trie node…

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages