#ifndef __HASH_H #define __HASH_H #include #include using namespace std; class Hash { private: list hashTable [HASH_TABLE_SIZE]; int collisions; int longestList; double avgLength; private: int hf ( string ); public: void remove ( string ); void print ( ); void processFile ( string ); bool search ( string ); void output ( string ); void printStats ( ); // put additional variables/functions below }; #endif