Implement Magic Dictionary
Problem
Implement a magic directory with buildDict, and search methods.
For the method buildDict, you'll be given a list of non-repetitive words to build a dictionary.
For the method search, you'll be given a word, and judge whether if you modify exactly one character into another character in this word, the modified word is in the dictionary you just built.
Example 1:
Input: buildDict(["hello", "leetcode"]), Output: Null
Input: search("hello"), Output: False
Input: search("hhllo"), Output: True
Input: search("hell"), Output: False
Input: search("leetcoded"), Output: False
Note:
- You may assume that all the inputs are consist of lowercase letters a-z.
- For contest purpose, the test data is rather small by now. You could think about highly efficient algorithm after the contest.
- Please remember to RESET your class variables declared in class MagicDictionary, as static/class variables are persisted across multiple test cases. Please see here for more details.
Solution
class MagicDictionary {
Set<String> set;
/** Initialize your data structure here. */
public MagicDictionary() {
this.set = new HashSet<>();
}
/** Build a dictionary through a list of words */
public void buildDict(String[] dict) {
this.set = new HashSet<>();
for (String word : dict) set.add(word);
}
/** Returns if there is any word in the trie that equals to the given word after modifying exactly one character */
public boolean search(String word) {
char[] chars = word.toCharArray();
for (int i = 0; i < word.length(); i++) {
char ch = chars[i];
for (char c = 'a'; c <= 'z'; c++) {
if (c != ch) {
chars[i] = c;
if (set.contains(new String(chars))) return true; //does not have to set char[i] back casue char[] is seprate
}
}
chars[i] = ch;
}
return false;
}
}
/**
* Your MagicDictionary object will be instantiated and called as such:
* MagicDictionary obj = new MagicDictionary();
* obj.buildDict(dict);
* boolean param_2 = obj.search(word);
*/
Analysis
The idea of this design is that we first put each word
to our set
And then when search(word)
gets called, we create every possible modification of word
If our set
contains that modification, we return true
, otherwise we return false