#ifndef _HASHTABLE_H #define _HASHTABLE_H #include "type.h" #include "list.h" #include "listiter.h" #include #define TABLE_SIZE 33 class Hashtable { public: Hashtable(); bool insert (Type *); void view(); Type* find (char*); bool remove(char *); private: List* table[TABLE_SIZE]; int hash (char*); //hash function }; #endif //_HASHTABLE_H