#include <graph.h>
Data Fields | |
void * | data |
The data stored in the vertice. | |
size_t | edgeCount |
The number of edges coming from this vertice. | |
char | visited |
1 if this vertice has been visited by tsort | |
PmEdge * | edges |
The first edge in the list. | |
PmEdge * | lastEdge |
The last edge in the list. | |
PmVertice * | prev |
The previous vertice in the list. | |
PmVertice * | next |
The next vertice in the list. |
Vertices contain data and are connected to each other through edges.
|
The data stored in the vertice.
|
|
The number of edges coming from this vertice.
|
|
The first edge in the list.
|
|
The last edge in the list.
|
|
The next vertice in the list.
|
|
The previous vertice in the list.
|
|
1 if this vertice has been visited by tsort
|