#ifndef HASHTABLE_H_ #define HASHTABLE_H_ 1 // A Hash Table Implementation // We implement an open-chained hash table storing keys only, no // values. // We implement the hash table using a vector of vectors of keyTypes. #include #include // has pair() #include "URL.h" #include // has UCHAR_MAX // ADD CODE HERE #endif // HASHTABLE_H_