Ejemplo n.º 1
0
 public void Initialize()
 {
     hashFunction1 = new HashFunction1();
     hashFunction2 = new HashFunction2();
     hashTable1 = new HashTable(5, hashFunction1);
     hashTable2 = new HashTable(5, hashFunction2);
 }
Ejemplo n.º 2
0
        public void Initialize()
        {
            HashFunction hashFunction = new HashFunction1();

            hash = new Hash(hashFunction);
        }