#include "MSTNode.h"
#include <vector>
Go to the source code of this file.
Classes | |
class | MST |
Class to represent a Minimum Spanning Tree (MST). More... | |
Typedefs | |
typedef std::vector< MSTNode > | NodeList |
Functions | |
std::ostream & | operator<< (std::ostream &, const MST &) |
Insertion operator to stream MST information to a given output stream. |
std::ostream& operator<< | ( | std::ostream & | os, | |
const MST & | mst | |||
) |
Insertion operator to stream MST information to a given output stream.
This method provides a convenient mechanism to dump the complete MST information for debugging purposes. The nodes in the MST are displayed in the order in which they were inserted into the MST.
Definition at line 135 of file MST.cpp.
References MST::nodeList.