-
How to create a hash table from stratch
-
How to use double hashing to handle collisions
-
How to resize the hashtable when load is above 0.7 or below 0.1
-
How to implement a basic hash algorithm:
-
Convert the string to a large integer
-
Reduce the size of the integer to a fixed range by taking its remainder mod the hash table size
-
- Implementing testing for the hash table