algorithms-edu 0.2.0

Algorithms for pedagogical demonstration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
graph TD;
    dfs(Depth First Search)
    bfs(Breadth First Search)
    rt(Rooting Tree)
    tc(Tree Center)
    ti(Tree Isomorphism)
    tpls(Topological Sort)
    sparse(Sparse Table)
    lca(Lowest Common Ancestor)
    sparse-->lca;
    dfs-->lca;
    rt-->ti;
    tc-->ti;
    dfs-->tpls;
    tc-->tpls;