Hash Tables
Notes:
1. key-value structure
2. an underlying array and a hash function
3. linked list at index hash(key)%array_length
4. practice both implementing and using hash table
Hash Tables
Notes:
1. key-value structure
2. an underlying array and a hash function
3. linked list at index hash(key)%array_length
4. practice both implementing and using hash table