Problem Description
Design a special dictionary that searches the words in it by a prefix and a suffix. Implement the WordFilter
class with methods to initialize the object with words and to search for words based on given prefix and suffix.
Key Insights
- The problem requires efficient searching of words based on both prefix and suffix.
- Using a Trie (prefix tree) can help in efficiently managing and searching prefixes.
- To handle suffixes, we can reverse the strings and apply a similar Trie structure.
- The solution needs to ensure that if multiple words match, the highest index is returned.
Space and Time Complexity
Time Complexity: O(n * m) for initialization, where n is the number of words and m is the maximum length of the words. Each search operation f(pref, suff) takes O(p + s) where p is the length of the prefix and s is the length of the suffix.
Space Complexity: O(n * m) for storing the words in the Trie structures.
Solution
The solution utilizes two Trie data structures: one for storing the words to handle prefix searches and another for handling suffix searches by storing the reversed words. When searching, we check for matches in both Tries and return the highest index of the matching words.