Mescal
|
Type used to represent a directed unlabeled graph. More...
#include <graphs.h>
Public Attributes | |
uint | size |
Number of vertices. | |
dequeue ** | edges |
The edges: an array of size "size". | |
Type used to represent a directed unlabeled graph.
edges
. For each vertex q
, the cell edge[q]
contains a list of all vertices that are connected to q
by an edge.This list must be sorted in increasing order.