#ifndef HASHTABLE_H_ #define HASHTABLE_H_ 1 // A Hash Table Implementation // We implement an open-chained hash table storing URLs only, no // values. // We implement the hash table using a vector of vectors of URLs. // (It may be easiest to implement using another type, e.g., key_type, // and then convert to using URLs.) #include #include // has pair() #include "URL.h" #include // has UCHAR_MAX // ADD CODE HERE #endif // HASHTABLE_H_