コード例 #1
0
ファイル: HashTable.cs プロジェクト: parrottsquawk/School
 public HashTable(int aSize, int fIndex)
     : this(aSize)
 {
     Hasher = new HashFunction(aSize, fIndex);
 }
コード例 #2
0
ファイル: HashTable.cs プロジェクト: parrottsquawk/School
 public HashTable(int size)
 {
     Hasher = new HashFunction(size);
     CollisionCount = 0;
     _items = new object[size];
 }