Survey of Algorithms
This contains a survey of algorithms to facilitate quick review.
O(V + E)
V = number of vertices
E = number of edges
- Shortest path : Unweighted graph, Dijkstra, Bellman-Ford
- Minimal spanning tree : Prim
O(V + E)
- Path discovery
- Topological sort for DAG - Directed Acyclic Graph