-
Notifications
You must be signed in to change notification settings - Fork 0
/
Trie.js
158 lines (93 loc) · 1.99 KB
/
Trie.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
var Node = (function(){
var count = 0;
var children = null;
var end = false;
return {
'children': children,
count: count,
end: end
}
});
var Trie = (function(){
var root = Node();
function addWord(word){
var curr = root;
for(var i = 0;i<word.length;i++){
if(curr.children == null){
curr.children = {};
curr.children[word[i]] = Node();
}else{
if(curr.children[word[i]] === undefined){
curr.children[word[i]] = Node();
}
}
curr = curr.children[word[i]];
curr.count+=1;
}
curr.end = true;
}
function isPresent(word){
var curr = root;
var flag = true;
for(var i = 0;i<word.length;i++){
if(curr.children === null){
flag = false;
break;
}
curr = curr.children[word[i]];
if(curr === undefined || curr === null){
flag = false;
break;
}
}
if(flag){
flag = curr.end;
}
return flag;
}
function walk(node){
//console.log(node);
if(node === undefined) return "";
if(node.children == null) return [""];
var words = [];
for(var ij in node.children){
var word = ij;
var child_words = walk(node.children[ij]);
for(var j = 0;j<child_words.length;j++){
words.push(word+child_words[j]);
}
var ind = words.findIndex(function(a){return a == word; });
if(node.children[ij].end && ind == -1 ) words.push(word);
}
//console.log(words);
return words;
}
function getAll(){
return walk(root);
}
function giveWords(word){
if(root.children[word[0]] === null || root.children[word[0]] === undefined)
return [];
var words = [];
var curr = root;
for(var i = 0;i<word.length;i++){
if(curr && curr.children){
curr = curr.children[word[i]];
}
}
if(curr){
var child_words = walk(curr);
for(var j = 0;j<child_words.length;j++){
words.push(word+child_words[j]);
}
}
return words;
}
return {
addWord: addWord,
root: root,
isPresent: isPresent,
giveWords: giveWords,
getAll: getAll
};
});