View on GitHub

reading-notes

CodeFellows Class Reading Notes

Hash Tables

Hash(key) –> index

To store a value: append key and value to the end of the linked list at that index position.

To read a value: access the linked list at that index position and search for the node with the matching key. Then return that key/value pair.


Terms:


Common Uses:


Reference:

Code Fellows - Hashtables Hacker Earth - Basics of Hash Tables Paul Programming - Into to Hash Tables (video)


Home