The word trie is an infix of the word “retrieval” because the trie can find a single word in a dictionary with only a prefix of the word. Trie, can support all operations like insert, search, delete in O(n) time where n is length of the word to be processed. They are used for ordered string operations, and is a best data structure for Dictionary and spell Checkers.