-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbreadth-first-search.js
50 lines (44 loc) · 1.28 KB
/
breadth-first-search.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
/* A Queue object for queue-like functionality over JavaScript arrays. */
var Queue = function() {
this.items = [];
};
Queue.prototype.enqueue = function(obj) {
this.items.push(obj);
};
Queue.prototype.dequeue = function() {
return this.items.shift();
};
Queue.prototype.isEmpty = function() {
return this.items.length === 0;
};
/*
* Performs a breadth-first search on a graph
* @param {array} graph - Graph, represented as adjacency lists.
* @param {number} source - The index of the source vertex.
* @returns {array} Array of objects describing each vertex, like
* [{distance: _, predecessor: _ }]
*/
var doBFS = function(graph, source) {
var bfsInfo = [];
for (var i = 0; i < graph.length; i++) {
bfsInfo[i] = {
distance: null,
predecessor: null
};
}
bfsInfo[source].distance = 0;
var queue = new Queue();
queue.enqueue(source);
while(!queue.isEmpty()) {
var node = queue.dequeue();
for (var i = 0; i < graph[node].length; i++) {
var neighbor = graph[node][i];
if (bfsInfo[neighbor].distance === null) {
bfsInfo[neighbor].distance = bfsInfo[node].distance + 1;
bfsInfo[neighbor].predecessor = node;
queue.enqueue(neighbor);
}
}
}
return bfsInfo;
};