HOG2
Prim.h
Go to the documentation of this file.
1 //
2 // Prim.h
3 // hog2 glut
4 //
5 // Created by Nathan Sturtevant on 8/9/17.
6 // Copyright © 2017 University of Denver. All rights reserved.
7 //
8 
9 #ifndef Prim_h
10 #define Prim_h
11 
12 #include <stdio.h>
13 #include "Graph.h"
14 
15 // Finds the MST, marking all edges that are in the MST
16 void Prim(Graph *g);
17 
18 #endif /* Prim_hpp */
Graph.h
Graph
A generic Graph class.
Definition: Graph.h:66
Prim
void Prim(Graph *g)
Definition: Prim.cpp:21