-
Notifications
You must be signed in to change notification settings - Fork 0
/
trie.ts
110 lines (91 loc) · 2.82 KB
/
trie.ts
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
import { Nullable } from "@/types";
import { isDefined } from "@/utils/is-defined";
import TrieNode from "./trie-node";
const HEAD_CHARACTER = "*";
/**
* Trie is a sorted tree-based that usually implements by HastTable.
*
*/
export default class Trie {
public head: TrieNode;
constructor() {
this.head = new TrieNode(HEAD_CHARACTER);
}
/**
* Returns the last character of a word
* @param word
* @returns last character or null.
*/
private getLeaf(word: string): Nullable<TrieNode> {
const characters = Array.from(word);
let currentNode = this.head;
for (let charIndex = 0; charIndex < characters.length; charIndex += 1) {
if (!currentNode.hasChild(characters[charIndex])) return null;
currentNode = currentNode.getChild(characters[charIndex]) as TrieNode;
}
return currentNode;
}
/**
* Adds new word
* @param word
* @returns an instance of current Trie.
*/
public add(word: string): Trie {
const characters = Array.from(word);
let currentNode = this.head;
for (let charIndex = 0; charIndex < characters.length; charIndex += 1) {
const isWord = charIndex === characters.length - 1;
currentNode = currentNode.addChild(characters[charIndex], isWord);
}
return this;
}
/**
* Removes word
* @param word
* @returns an instance of current Trie.
*/
public remove(word: string) {
const depthFirstDelete = (currentNode: TrieNode, charIndex = 0) => {
if (charIndex >= word.length) {
// Return if we're trying to delete the character that is out of word's scope.
return;
}
const character = word[charIndex];
const nextNode = currentNode.getChild(character);
if (nextNode == null) {
// Return if we're trying to delete a word that has not been added to the Trie.
return;
}
depthFirstDelete(nextNode, charIndex + 1);
// Since we're going to delete a word let's un-mark its last character isCompleteWord flag.
if (charIndex === word.length - 1) {
nextNode.isWord = false;
}
// childNode is deleted only if:
// - childNode has NO children
// - childNode.isCompleteWord === false
currentNode.removeChild(character);
};
// Start depth-first deletion from the head node.
depthFirstDelete(this.head);
return this;
}
/**
* Suggests next characters.
* @param word
* @returns null or array of string.
*/
public suggestNextCharacters(word: string): string[] | undefined {
const lastCharacter = this.getLeaf(word);
return lastCharacter?.suggestChildren();
}
/**
* Checks if a word is exists in Trie.
* @param word
* @returns
*/
public isExist(word: string): boolean {
const lastCharacter = this.getLeaf(word);
return isDefined(lastCharacter) && lastCharacter.isWord;
}
}