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