-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcase.js
79 lines (69 loc) · 1.85 KB
/
case.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
// Suppose you have a text file containing a list of valid words, each word separated
// by a newline character. We can construct a BST with these words where each node
// contains a word, and its left child node contains words that come before it in
// alphabetical order, while the right child node contains words that come after it.
class Node {
constructor(value) {
this.value = value;
this.left = null;
this.right = null;
}
}
class SpellChecker {
constructor() {
this.root = null;
}
insert(word) {
if (!this.root) {
this.root = new Node(word);
} else {
this._insertNode(this.root, word);
}
}
///helper function
_insertNode(node, word) {
if (word < node.value) {
if (node.left) {
this._insertNode(node.left, word);
} else {
node.left = new Node(word);
}
} else if (word > node.value) {
if (node.right) {
this._insertNode(node.right, word);
} else {
node.right = new Node(word);
}
}
}
search(word) {
return this._searchNode(this.root, word);
}
_searchNode(node, word) {
if (!node) {
return false;
}
if (word === node.value) {
return true;
} else if (word < node.value) {
return this._searchNode(node.left, word);
} else {
return this._searchNode(node.right, word);
}
}
}
// Usage:
const spellChecker = new SpellChecker();
const validWords = ["apple", "banana", "orange", "grape", "pear"];
// Construct the BST
validWords.forEach((word) => {
spellChecker.insert(word);
});
console.log(spellChecker)
// Search for a word
const searchWord = "banana";
if (spellChecker.search(searchWord)) {
console.log(`${searchWord} is a valid word.`);
} else {
console.log(`${searchWord} is not a valid word.`);
}