CODE IN C++
19.4 Movie Data – Vector of pointers to MovieData objects
This lab upgrades the movie data assignment: structs areupgraded to classes/objects and arrays to vectors. In fact, thevector
stores pointers to moviedata objects. The binary search and sortare also upgraded to reflect the new data structure.
Search now has two options: 1) Search by title 2) Search byrunning time. This is to be done using function overloading.
The specification file is given to you: You will need to writethe implementation. The main program template is also provided.
Follow the directions in the comments in the main program toimplement the helper methods in the
OR
OR