#include #include "CityConnector.h" using namespace std; void main(void) { CityConnector flights("flights.txt"); flights.ReportConnectedCities(); cout << endl << endl << endl << "Jacksonville to Denver?" << endl; flights.CheckConnection("Jacksonville", "Denver"); cout << endl << "Bozeman to Denver?" << endl; flights.CheckConnection("Bozeman", "Denver"); /*With hashing, checking a city which does not exist will still handle fine... */ cout << endl << "Pullman to Tokyo?" << endl; flights.CheckConnection("Pullman", "Tokyo"); }