// Implementation of the Graph ADT // Undirected, unweighted // Vertices are given by integers between 0 and V - 1 #include #include #include #include #include "Graph.h" #define DEFAULT_CAPACITY 16 struct graph { int nV; int nE; struct edge *edges; int maxE; }; struct edge { Vertex v; Vertex w; }; static bool validVertex(Graph g, Vertex v); /** * Returns a new graph with nV vertices */ Graph GraphNew(int nV) { // TODO fprintf(stderr, "error: not implemented\n"); exit(EXIT_FAILURE); } /** * Frees all memory allocated to a graph */ void GraphFree(Graph g) { free(g->edges); free(g); } /** * Returns the number of vertices in a graph */ int GraphNumVertices(Graph g) { return g->nV; } /** * Returns the number of edges in a graph */ int GraphNumEdges(Graph g) { return g->nE; } /** * Returns true if there is an edge between v and w, * and false otherwise */ bool GraphIsAdjacent(Graph g, Vertex v, Vertex w) { assert(validVertex(g, v)); assert(validVertex(g, w)); // TODO return false; } /** * Inserts an edge between v and w */ void GraphInsertEdge(Graph g, Vertex v, Vertex w) { assert(validVertex(g, v)); assert(validVertex(g, w)); // TODO } /** * Removes an edge between v and w */ void GraphRemoveEdge(Graph g, Vertex v, Vertex w) { assert(validVertex(g, v)); assert(validVertex(g, w)); // TODO } /** * Returns the degree of a vertex */ int GraphDegree(Graph g, Vertex v) { assert(validVertex(g, v)); // TODO return 0; } /** * Displays a graph */ void GraphShow(Graph g) { printf("Number of vertices: %d\n", g->nV); printf("Number of edges: %d\n", g->nE); printf("Edges:\n"); for (int i = 0; i < g->nE; i++) { printf("(%d, %d)\n", g->edges[i].v, g->edges[i].w); } printf("\n"); } static bool validVertex(Graph g, Vertex v) { return (v >= 0 && v < g->nV); }