746. Prefix And Suffix Search¶
Difficulty: Hard
LeetCode Problem View on GitHub
746. Prefix and Suffix Search
Hard
Design a special dictionary that searches the words in it by a prefix and a suffix.
Implement the WordFilter class:
WordFilter(string[] words)Initializes the object with thewordsin the dictionary.f(string pref, string suff)Returns the index of the word in the dictionary, which has the prefixprefand the suffixsuff. If there is more than one valid index, return the largest of them. If there is no such word in the dictionary, return-1.
Example 1:
Input
["WordFilter", "f"]
[[["apple"]], ["a", "e"]]
Output
[null, 0]
Explanation
WordFilter wordFilter = new WordFilter(["apple"]);
wordFilter.f("a", "e"); // return 0, because the word at index 0 has prefix = "a" and suffix = "e".
Constraints:
1 <= words.length <= 1041 <= words[i].length <= 71 <= pref.length, suff.length <= 7words[i],prefandsuffconsist of lowercase English letters only.- At most
104calls will be made to the functionf.
Solution¶
class WordFilter {
private HashMap<String, Integer> map;
public WordFilter(String[] words) {
int n = words.length;
map = new HashMap<>();
for (int i = 0; i < n; i++) {
for (int j = 0; j < words[i].length(); j++) {
String prefix = words[i].substring(0, j + 1);
for (int k = words[i].length() - 1; k >= 0; k--) {
String suffix = words[i].substring(k);
map.put(prefix + ":" + suffix , i);
}
}
}
}
public int f(String pref, String suff) {
return map.getOrDefault(pref + ":" + suff , -1);
}
}
/**
* Your WordFilter object will be instantiated and called as such:
* WordFilter obj = new WordFilter(words);
* int param_1 = obj.f(pref,suff);
*/
Complexity Analysis¶
- Time Complexity:
O(?) - Space Complexity:
O(?)
Approach¶
Detailed explanation of the approach will be added here