Data Structures & Algorithms in C++
Goodrich, Tamassia, Mount and Goldwasser
|
#include "graph.h"
Namespaces | |
namespace | dsac |
Code from the zyBook "Data Structures and Algorithms in C++" by Goodrich/Tamassia/Mount/Goldwasser. | |
namespace | dsac::graph |
Code from the chapter "Graph Algorithms". | |
Functions | |
template<typename V , typename E > | |
Graph< V, E > | dsac::graph::floyd_warshall (const Graph< V, E > &g) |
Returns a new graph that is the transitive closure of g. | |