Show / Hide Table of Contents

    Class TarjansStronglyConnected<T>

    Strongly connected using Tarjan's algorithm.

    Inheritance
    Object
    TarjansStronglyConnected<T>
    Namespace: Advanced.Algorithms.Graph
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class TarjansStronglyConnected<T> : object
    Type Parameters
    Name Description
    T

    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>>
    Back to top Generated by DocFX