Deletion in a Trie
After insertion and search, Figure out the logic behind deletion in tries.
Deleting a word in a Trie
While deleting a node, you need to make sure that the node that you are trying to delete does not have any further child branches. If there are no branches, then you can easily remove the node.
However, if the node contains child branches, this opens up a few scenarios which will be covered below.
Level up your interview prep. Join Educative to access 80+ hands-on prep courses.