#include<iostream>
#include<string>
#include<fstream>

#include"HashTable.h"

using namespace std;

int main() {

  ifstream ifs("//Engr_asu/Ece352/words");
  string word;
  string zoom = "zoom";
  
  for (double d = .1; d< .99; d+= .1){
    HashTable<string> t;
    //read and print the appropiate information

    //when you are done reading , you will want to reset the file with:
    ifs.clear();
    ifs.seekg(0);
  }
  
  return 0;
}