Graph/MinimumSpanningTree/mst.h

Go to the documentation of this file.
00001 
00010 #ifndef _MST_H_
00011 #define _MST_H_
00012 
00013 #include "Graph.h"
00014 
00021 void mst_prim (Graph const &graph,     /* in */
00022                vector<int> &pred);     /* out */
00023 
00024 #endif /* _MST_H_ */
Algorithm Development Kit 1.0