-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtreeBreadthFirstSelect.js
More file actions
87 lines (72 loc) · 2.11 KB
/
treeBreadthFirstSelect.js
File metadata and controls
87 lines (72 loc) · 2.11 KB
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
// Implement a breadth-first method on a tree class.
// BFSelect accepts a filter function, calls that function on each of the nodes in Breadth-First order, and returns a flat array of node values of the tree for which the filter returns true.
var Tree = function(value){
this.value = value;
this.children = [];
};
Tree.prototype.BFSelect = function(filter) {
var queue = new Queue();
var results = [];
var node = {tree: this, depth: 0};
queue.enqueue(node);
var currentNode = queue.dequeue();
while(currentNode){
for(var i = 0; i < currentNode.tree.children.length; i++){
queue.enqueue({tree: currentNode.tree.children[i], depth: currentNode.depth + 1})
}
if(filter(currentNode.tree.value, currentNode.depth)){
results.push(currentNode.tree.value)
}
currentNode = queue.dequeue();
}
return results;
};
/**
* You shouldn't need to change anything below here, but feel free to look.
*/
/**
* add an immediate child
* (wrap values in Tree nodes if they're not already)
*/
Tree.prototype.addChild = function(child){
if (!child || !(child instanceof Tree)){
child = new Tree(child);
}
if(!this.isDescendant(child)){
this.children.push(child);
}else {
throw new Error('That child is already a child of this tree');
}
// return the new child node for convenience
return child;
};
/**
* check to see if the provided tree is already a child of this
* tree __or any of its sub trees__
*/
Tree.prototype.isDescendant = function(child){
if(this.children.indexOf(child) !== -1){
// `child` is an immediate child of this tree
return true;
}else{
for(var i = 0; i < this.children.length; i++){
if(this.children[i].isDescendant(child)){
// `child` is descendant of this tree
return true;
}
}
return false;
}
};
/**
* remove an immediate child
*/
Tree.prototype.removeChild = function(child){
var index = this.children.indexOf(child);
if(index !== -1){
// remove the child
this.children.splice(index,1);
}else{
throw new Error('That node is not an immediate child of this tree');
}
};