-
Notifications
You must be signed in to change notification settings - Fork 929
/
Copy pathtrie-1.js
123 lines (103 loc) · 2.82 KB
/
trie-1.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
class Trie {
constructor(val) {
this.val = val;
this.children = {};
this.isWord = false;
}
/**
* Insert word into trie and mark last element as such.
* @param {string} word
* @return {undefined}
*/
insert(word) {
let curr = this;
for (const char of word) {
curr.children[char] = curr.children[char] || new Trie(char);
curr = curr.children[char];
}
curr.isWord = true;
}
/**
* Search for complete word (by default) or partial if flag is set.
* @param {string} word - Word to search.
* @param {boolean} options.partial - Whether or not match partial matches.
* @return {boolean}
*/
search(word, { partial } = {}) {
let curr = this;
for (const char of word) {
if (!curr.children[char]) { return false; }
curr = curr.children[char];
}
return partial ? true : curr.isWord;
}
/**
* Return true if any word on the trie starts with the given prefix
* @param {string} prefix - Partial word to search.
* @return {boolean}
*/
startsWith(prefix) {
return this.search(prefix, { partial: true });
}
/**
* Returns all the words from the current `node`.
* Uses backtracking.
*
* @param {string} prefix - The prefix to append to each word.
* @param {string} node - Current node to start backtracking.
* @param {string[]} words - Accumulated words.
* @param {string} string - Current string.
*/
getAllWords(prefix = '', node = this, words = [], string = '') {
if (node.isWord) {
words.push(`${prefix}${string}`);
}
for (const char of Object.keys(node.children)) {
this.getAllWords(prefix, node.children[char], words, `${string}${char}`);
}
return words;
}
/**
* Return true if found the word to be removed, otherwise false.
* Iterative approach
* @param {string} word - The word to remove
* @returns {boolean}
*/
remove(word) {
const stack = [];
let curr = this;
for (const char of word) {
if (!curr.children[char]) { return false; }
stack.push(curr);
curr = curr.children[char];
}
if (!curr.isWord) { return false; }
let node = stack.pop();
do {
node.children = {};
node = stack.pop();
} while (node && !node.isWord);
return true;
}
/**
* Return true if found the word to be removed, otherwise false.
* recursive approach
* @param {string} word - The word to remove
* @returns {boolean}
*/
remove2(word, i = 0, parent = this) {
if (i === word.length - 1) {
return true;
}
const child = parent.children[word.charAt(i)];
if (!child) return false;
const found = this.remove(word, i + 1, child);
if (found) {
delete parent.children[word.charAt(i)];
}
return true;
}
}
// Aliases
Trie.prototype.add = Trie.prototype.insert;
module.exports = Trie;