GraphRep
typedef struct GraphRep { Node **edges; // array of lists int nV; // #vertices int nE; // #edges } GraphRep; typedef struct Node { // linked list node Vertex v; struct Node *next; } Node;