#include #include #include #include "timer.h" #include using namespace std; template class myHash { private: //hashsize is number you are going to decided on. const static int HASHSIZE = ?; T * hash; int size; public: myHash() { size =0; hash = new T[HASHSIZE]; for(int i=0; i