#include "ListHash.h"
#include <assert.h>
#include <memory.h>
#include <iostream.h>
//
// Constructor requires size of table
//
ListHash::ListHash(int size) {
sSteps = collisions = insertions = searches = 0;
// Allocate table data
N = size;
keys = new std::list[N];
data = new std::list