Write a hash table in C
Hash tables are one of the most useful data structures. Their quick and scalable insert, search and delete make them relevant to a large number of computer science problems.
See the tutorial:
https://github.com/jamesroutley/write-a-hash-table
#hashtable #programming