Class TarjansStronglyConnected<T>
Strongly connected using Tarjan's algorithm.
Inheritance
TarjansStronglyConnected<T>
Assembly: Advanced.Algorithms.dll
Syntax
public class TarjansStronglyConnected<T> : object
Type Parameters
Methods
FindStronglyConnectedComponents(IDiGraph<T>)
Rreturns a list of Strongly Connected components in this graph.
Declaration
public List<List<T>> FindStronglyConnectedComponents(IDiGraph<T> graph)
Parameters
Type |
Name |
Description |
IDiGraph<T> |
graph |
|
Returns
Type |
Description |
List<List<T>> |
|