Show / Hide Table of Contents

    Class KahnsTopSort<T>

    Find Toplogical order of a graph using Kahn's algorithm.

    Inheritance
    Object
    KahnsTopSort<T>
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Advanced.Algorithms.Graph
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class KahnsTopSort<T>
    Type Parameters
    Name Description
    T

    Methods

    GetTopSort(DiGraph<T>)

    Returns the vertices in Topologically Sorted Order.

    Declaration
    public List<T> GetTopSort(DiGraph<T> graph)
    Parameters
    Type Name Description
    DiGraph<T> graph
    Returns
    Type Description
    List<T>
    Back to top Generated by DocFX