public HashTableBase(HashProviderBase hashProvider)
 {
     this.hashProvider = hashProvider;
 }
Exemple #2
0
 public DHHashTable(HashProviderBase hashBase) : base(hashBase)
 {
     this.table   = new HashSlot[INITIAL_ARRAY_SIZE];
     this.entries = 0;
 }
Exemple #3
0
 public QPHashTable(HashProviderBase hashProvider) : base(hashProvider)
 {
     this.table   = new HashSlot[16];
     this.entries = 0;
 }
 public LLHashTable(HashProviderBase hashProvider) : base(hashProvider)
 {
     this.entries = 0;
     this.table   = new ListNode[INIT_TABLE_LENGTH];
 }