struct Edge; //Purpose: Abstract structure for graph edges. int insertEdge(Edge e); //Purpose: Store an edge defined by two vertices.
Test your program output with graph G that has 4 vertices (1, 2, 3, and 4) and edges {(1,2), (1,4), (2,1), (2,3), (3,2), (4,1)}.
Test your program output with graph G that has 4 vertices (1, 2, 3, and 4) and
edges {(1,2), (1,4), (2,1), (2,3), (3,2), (4,1)}.