- Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathBreadthFirstSearch.cs
58 lines (49 loc) · 1.95 KB
/
BreadthFirstSearch.cs
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
usingSystem;
usingSystem.Collections.Generic;
usingDataStructures.Graph;
namespaceAlgorithms.Graph;
/// <summary>
/// Breadth First Search - algorithm for traversing graph.
/// Algorithm starts from root node that is selected by the user.
/// Algorithm explores all nodes at the present depth.
/// </summary>
/// <typeparam name="T">Vertex data type.</typeparam>
publicclassBreadthFirstSearch<T>:IGraphSearch<T>whereT:IComparable<T>
{
/// <summary>
/// Traverses graph from start vertex.
/// </summary>
/// <param name="graph">Graph instance.</param>
/// <param name="startVertex">Vertex that search starts from.</param>
/// <param name="action">Action that needs to be executed on each graph vertex.</param>
publicvoidVisitAll(IDirectedWeightedGraph<T>graph,Vertex<T>startVertex,Action<Vertex<T>>?action=default)
{
Bfs(graph,startVertex,action,newHashSet<Vertex<T>>());
}
/// <summary>
/// Traverses graph from start vertex.
/// </summary>
/// <param name="graph">Graph instance.</param>
/// <param name="startVertex">Vertex that search starts from.</param>
/// <param name="action">Action that needs to be executed on each graph vertex.</param>
/// <param name="visited">Hash set with visited vertices.</param>
privatevoidBfs(IDirectedWeightedGraph<T>graph,Vertex<T>startVertex,Action<Vertex<T>>?action,HashSet<Vertex<T>>visited)
{
varqueue=newQueue<Vertex<T>>();
queue.Enqueue(startVertex);
while(queue.Count>0)
{
varcurrentVertex=queue.Dequeue();
if(currentVertex==null||visited.Contains(currentVertex))
{
continue;
}
foreach(varvertexingraph.GetNeighbors(currentVertex))
{
queue.Enqueue(vertex!);
}
action?.Invoke(currentVertex);
visited.Add(currentVertex);
}
}
}