Movie Store Program

This is a CSS 343 final project where I designed a movie store with a partner and implemented the program myself. This program uses C++ and imitates a movie store's automated inventory tracking system. It consists of many classes which includes the customer service side of the movie store and the actual inventory of the movie store. The inventory of the movie store utilizes a binary tree to store all the movies. The movies are sorted by three genres: comedy, classic, and drama. The customers are stored in a hash table in which an ID is used to identify them.

Design

For the design, we first work on making a UML diagram to brainstorm all the classes we need and how they are going to interact with each other. We then determine what each class will do which will determine what methods and variables it will have. In order to make sure that our design is deliverable, we met with the professor to approve of our design.

Implementation

When implementing the program, I started with implementing both the hash table and binary tree first as it will be the data structure we are going to use to store both our customers and movies. After I implement the actual movie store, which will be the main class that will be used to control everything. I implemented the movie store's inventory of movies first and then the finish the program up by implementing the customers.

Code reference can be found on my GitHub: Data-Structure-Algorithm-and-Discrete-Math-II/Assignments/Movie Store at main · Azzu000/Data-Structure-Algorithm-and-Discrete-Math-II (github.com)

Testing

Throughout the whole programming process, I did unit testing for each method. This helps me work in smaller chunks, so I know what I am implementing is working as I go - also known as integration testing. I also did a full system test at the end when the program is finished to test the program as a whole. This is important as this makes sure our whole program is working properly. Note: Full test and output are in my GitHub.