cs311 last project hash table class 1

Using the Hash Table Class Assignments provided, create a program that will help with quickly looking up information related to movies.

**Multiple source files (.cpp and .g) are included in this docx file

For this project use the Hash Table Class to quickly look up information related to each movie.

  • What is your element object? Describe its >= 4 parts and draw an example with example values.

Field type example value

Movie Title/Name string Bad Boys for Life

Release Date string 01172020

Stars string Will Smith, Martin Lawrence, Vanessa Hudgens

Director(s) string Adil El Arbi, Bilall Fallah


  • Why is your program useful? What can you do with it?

This program would be useful because I buy a lot of movies and sometimes, I forget some information related to the movie, so I can use this program to help me display all the relevant information related to the movie when I look it up using the title


Hash Table Menu

  • Load the list of movies from the data file
  • Search for movie using the title/name
  • See all the data on the screen
  • Add a new movie to the data file
  • Delete a move from data file — a new function added to HW8
  • Save the data to a file
  • Exit