Performs a undirected (depth first and height first) depth first
search on a directed bidirectional graph.
Namespace:
QuickGraph.Algorithms.SearchAssembly: QuickGraph.Algorithms (in QuickGraph.Algorithms.dll) Version: 2.4.2.1514 (2.4.2.1514)
Syntax
| C# |
|---|
public class UndirectedDepthFirstSearchAlgorithm : IVertexColorizerAlgorithm, IPredecessorRecorderAlgorithm, ITimeStamperAlgorithm, IAlgorithm |
| Visual Basic (Declaration) |
|---|
Public Class UndirectedDepthFirstSearchAlgorithm _ Implements IVertexColorizerAlgorithm, IPredecessorRecorderAlgorithm, ITimeStamperAlgorithm, IAlgorithm |
Remarks
This algorithm is directly inspired from the BoostGraphLibrary implementation.
