GraphRep
typedef struct GraphRep { Edge *edges; // array of edges int nV; // #vertices (numbered 0..nV-1) int nE; // #edges int n; // size of edge array } GraphRep;