-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbreadthfirst.js
89 lines (75 loc) · 1.65 KB
/
breadthfirst.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
// {"category": "Tree", "notes": "Breadth-first traversal"}
/*
Breadth-first binary tree traversal
[10]
/ \
[4] [16]
/ \ / \
[2] [8] [12] [18]
/ \ \
[6] [14] [20]
\
[24]
/
[22]
Breadth-first traversal sequence: 10, 4, 16, 2, 8, 12, 18, 6, 14, 20, 24, 22
Expected output:
10
4, 16
2, 8, 12, 18
6, 14, 20
24
22
*/
'use strict';
export class BinaryTreeNode {
constructor(element, left = null, right = null) {
this.element = element;
this.left = left;
this.right = right;
}
printBreadthFirst() {
let output = '';
let node = this;
let level = 0;
let queue = [{node, level}];
while (queue.length) {
let front = queue.shift();
output += front.level > level ? '\n' : output ? ', ' : '';
output += front.node.element;
level = front.level;
if (front.node.left) {
queue.push({
node: front.node.left,
level: level + 1
});
}
if (front.node.right) {
queue.push({
node: front.node.right,
level: level + 1
});
}
}
return output + '\n';
}
add(element) {
if (element < this.element) {
if (this.left) {
this.left.add(element);
}
else {
this.left = new BinaryTreeNode(element);
}
}
if (element > this.element) {
if (this.right) {
this.right.add(element);
}
else {
this.right = new BinaryTreeNode(element);
}
}
return this;
}
}