-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree-bfs-sum.js
83 lines (66 loc) · 2.26 KB
/
tree-bfs-sum.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
// поиск в ширину в бинарном дереве
//создадим бинарное дерево используя ООП инструменты JS
// функция -- конструктор
class Node {
constructor(val) {
this.val = val;
this.left = null;
this.right = null;
}
}
// схема будущего дерева
// a
// / \
// b c
// / \ \
// d e f
// создаем ноды
const a = new Node(1);
const b = new Node(2);
const c = new Node(3);
const d = new Node(4);
const e = new Node(5);
const f = new Node(6);
// присваиваем детей
a.left = b;
a.right = c;
b.left = d;
b.right = e;
c.right = f;
// Поиск в ширину обходит все ноды на уровне прежде чем двигаться глубже.
// используем очередь QUEUE, добавляем новые элементы в конец, забираем в работу с головы.
// инициализируем очередь, засовываем в нее корневую ноду
// начинаем обход. Когда очередь пуста -- алгоритм завершен.
// эта функция обходит дерево и выводит все его элементы в консоль.
const breadthFirstPrint = (root) => {
const queue = [root];
while (queue.length > 0) {
const curr = queue.shift();
console.log(curr.val);
if (curr.left !== null) {
queue.push(curr.left);
}
if (curr.right !== null) {
queue.push(curr.right);
}
}
};
breadthFirstPrint(a);
// эта функция обходит дерево и суммирует содержимое всех нод.
const totalSum = (root) => {
const queue = [root];
let sum = 0;
while (queue.length > 0) {
const curr = queue.shift();
sum += curr.val;
if (curr.left !== null) {
queue.push(curr.left);
}
if (curr.right !== null) {
queue.push(curr.right);
}
}
return sum;
};
let test = totalSum(a);
console.log(test);