forked from TheAlgorithms/JavaScript
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBreadthFirstSearch.js
More file actions
Latest commit
37 lines (31 loc) · 1.12 KB
/
Copy pathBreadthFirstSearch.js
File metadata and controls
37 lines (31 loc) · 1.12 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
importQueuefrom'../Data-Structures/Queue/Queue'
/**
* Breadth-first search is an algorithm for traversing a graph.
*
* It discovers all nodes reachable from the starting position by exploring all of the neighbor nodes at the present
* depth prior to moving on to the nodes at the next depth level.
*
* (description adapted from https://en.wikipedia.org/wiki/Breadth-first_search)
* @see https://www.koderdojo.com/blog/breadth-first-search-and-shortest-path-in-csharp-and-net-core
*/
exportfunctionbreadthFirstSearch(graph,startingNode){
// visited keeps track of all nodes visited
constvisited=newSet()
// queue contains the nodes to be explored in the future
constqueue=newQueue()
queue.enqueue(startingNode)
while(!queue.isEmpty()){
// start with the queue's first node
constnode=queue.dequeue()
if(!visited.has(node)){
// mark the node as visited
visited.add(node)
constneighbors=graph[node]
// put all its neighbors into the queue
for(leti=0;i<neighbors.length;i++){
queue.enqueue(neighbors[i])
}
}
}
returnvisited
}