Skip to content
Snippets Groups Projects
Commit db16ca7f authored by Winston Jodjana's avatar Winston Jodjana
Browse files

Update CHT

parent a9523c08
No related branches found
No related tags found
No related merge requests found
......@@ -13,11 +13,11 @@ import java.util.function.Supplier;
* restrict the size of the input domain (i.e., it must accept
* any key) or the number of inputs (i.e., it must grow as necessary).
*
* - Your HashTable should rehash as appropriate (use load factor as
* - ChainingHashTable should rehash as appropriate (use load factor as
* shown in class!).
*
* - HashTable must resize its capacity into prime numbers via given PRIME_SIZES list.
* Past this, it should continue to resize using some other mechanism.
* - ChainingHashTable must resize its capacity into prime numbers via given PRIME_SIZES list.
* Past this, it should continue to resize using some other mechanism (primes not necessary).
*
* - When implementing your iterator, you should NOT copy every item to another
* dictionary/list and return that dictionary/list's iterator.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment