]>
wirehaze git hosting - graph-theory.git/blob - graph/adj.h
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
);