An open API service indexing awesome lists of open source software.

https://github.com/arunkumar201/topological_sorting

The topological sort algorithm creates a linear ordering of the vertices such that if edge (u,v) appears in the graph, then v comes before u in the ordering. The graph must be a directed acyclic graph (DAG). The implementation consists mainly of a call to depth_first_search().
https://github.com/arunkumar201/topological_sorting

Last synced: about 1 year ago
JSON representation

The topological sort algorithm creates a linear ordering of the vertices such that if edge (u,v) appears in the graph, then v comes before u in the ordering. The graph must be a directed acyclic graph (DAG). The implementation consists mainly of a call to depth_first_search().

Awesome Lists containing this project