-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNode.js
52 lines (47 loc) · 975 Bytes
/
Node.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
// const Node = (val) => {
// this.value = val
// this.left = null
// this.right = null
// }
function Node(val) {
this.value = val
this.left = null
this.right = null
}
Node.prototype.addNode = function (n) {
if (this.value > n.value) {
if (this.left == null) {
this.left = n
} else {
this.left.addNode(n)
}
} else if (this.value < n.value) {
if (this.right == null) {
this.right = n
} else {
this.right.addNode(n)
}
}
}
Node.prototype.visit = function(arr = []) {
if (this.left !== null) {
this.left.visit(arr)
}
arr.push(this.value)
if (this.right !== null) {
this.right.visit(arr)
}
return arr
}
Node.prototype.search = function(val) {
if (this.value > val && this.left !== null) {
this.left.search(val)
} else if (this.value < val && this.right !== null) {
this.right.search(val)
} else if (this.value === val){
console.log(`Found: ${val}`)
} else {
console.log(`Couldn't find ${val}`)
}
}
module.exports = Node