Trie
This is about the trie data structure
Important Tips
- Dont forget that each Node should have a boolean to mark the end of a word
- When Inserting through the root to the correct child node, if a character doesnt exit, create a new node
- When removing a string make sure to check if each node is the end of a string
Here is a link to more info on Tries: hacker earth