Map
// Implementation of the Map ADT #include #include #include #include #include #include “Map.h” struct map { * Creates a new map with the given number of cities * Assumes that `numCities` is positive Map MapNew(int numCities) { return NULL; * Frees all memory allocated to the given map void MapFree(Map m) { * Returns the […]