This program inputs movies into a hash table using separate chaining for collision resolution. User can print, remove, and find movies. User can ask for all movies of a specific genre. Hash function splits movie title into 2, two digit sections, sums, divides by table size, and returns the remainder as the index.
pmh-3/HashMyMovie
A hash table to store the movies recommended for me to watch. A simple list just didn't cut it.
C++