Overview A trie is a data structure for efficient information retrieval. It is a special kind of tree where a path starting from root to a particular node can define a word…
Tag: data structure
Set implementation in Golang
A set is a data structure that holds elements without any particular order. An element only appears once in a set. Set can be implemented in GO using a map. We will…