示例#1
0
 public HashTable(int aSize, int fIndex)
     : this(aSize)
 {
     Hasher = new HashFunction(aSize, fIndex);
 }
示例#2
0
 public HashTable(int size)
 {
     Hasher = new HashFunction(size);
     CollisionCount = 0;
     _items = new object[size];
 }