v0.0.10
Deno module for Kahn topological sort
Repository
Current version released
4 years ago
Run tests
Module has some tests for the Kahn topological sorting algorithm implementation:
deno test test/KahnGraphTest.ts
Usage
Build the graph
Module support nodes which implements IEntity interface (id string field for mapping).
Graph supports to add nodes or edges:
const graph = new KahnGraph()
.addNode({id: "1"})
.addNode({id: "4"})
.addEdge({id: "1"}, {id: "2"})
.addEdge({id: "2"}, {id: "3"});
Sort topologically
You can sort the current graph state by calling the sort method on the graph:
const graph = new KahnGraph(); // Build the graph
graph.sort();
The sort does not modify the state of the graph, it clones its state, so you can add nodes /edges after sort and apply a new sort.
Positionable support
Module add support for sorting graph defined by before / after:
function e(id: string) {
return {id: id};
}
new PositionSupport()
.elem(e("1"))
.elem(e("2")).after("1")
.elem(e("3")).before("1").after("4")
.elem(e("4"))
.sort();