This crate regroups the following:
- Run length
- Binary search tree
- BTree
- Queue
- Priority queues (Binary Heap and `Vec` based)
- Deque
- Stack
- Separate chaining hash table
- Undirected graph
- Directed graph
- Edge weighted directed graphs
- Flow network
- Search algorithms:
- Breadth first search
- Depth first search
- Dijkstra
- Bellman-Ford
- Shortest path for dge weighted directed acyclic graphs
- Sort algorithm(s):
- Topological sort
- Connectivity
- Connected components
- Strong conected components
- Dynamic connectivity
- Union-Find
- Binary search
- Merge sort
- Heap sort
- Insertion sort
- Quick sort