For example we have an array of words: [car, done, try, cat, trie, do] What is the best data structure to store the data and easy for search? We can use Trie data structure, it is a tree, but not a binary tree. The reuslts of constructing a tree by u…