-
Notifications
You must be signed in to change notification settings - Fork 154
/
implement-magic-dictionary.js
103 lines (92 loc) · 2.57 KB
/
implement-magic-dictionary.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/**
* Implement Magic Dictionary
*
* 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.
*/
class TrieNode {
constructor() {
this.children = {};
this.isEnd = false;
}
}
class MagicDictionary {
constructor() {
this.root = new TrieNode();
}
/**
* Build a dictionary through a list of words
* @param {string[]} dict
* @return {void}
*/
buildDict(dict) {
dict.forEach(word => {
this.insert(word);
});
}
insert(word) {
let current = this.root;
for (let i = 0; i < word.length; i++) {
const c = word[i];
if (!current.children[c]) {
current.children[c] = new TrieNode();
}
current = current.children[c];
}
current.isEnd = true;
}
/**
* Returns if there is any word in the trie that equals to the given word
* after modifying exactly one character
* @param {string} word
* @return {boolean}
*/
search(word) {
const letters = 'abcdefghijklmnopqrstuvwxyz';
for (let i = 0; i < word.length; i++) {
for (let j = 0; j < letters.length; j++) {
const letter = letters[j];
if (word[i] !== letter) {
const modifiedWord = word.substr(0, i) + letter + word.substr(i + 1);
if (this.match(modifiedWord)) {
return true;
}
}
}
}
return false;
}
match(word) {
let current = this.root;
for (let i = 0; i < word.length; i++) {
const c = word[i];
if (!current.children[c]) {
return false;
}
current = current.children[c];
}
return current.isEnd;
}
}
export default MagicDictionary;