#include #include "hash.h" using namespace std; // This is only a sample hash function (and a bad one at that). You will // need to replace the contents of this hash function with your own // hash function int Hash::hf ( string ins ) { // place your hash function here.... return ( (int) ins[0] ) % HASH_TABLE_SIZE; }