]>
wirehaze git hosting - graph-theory.git/blob - graph/adj.h
b0ec7233c41fc2b70825cbf7d4db014094405fce
4 /* adjacency list implementation */
27 struct graph
*new_graph (unsigned int nv
);
29 int new_arc (struct graph
*g
, unsigned int vi
, unsigned int vj
);
31 int new_edge (struct graph
*g
, unsigned int vi
, unsigned int vj
);