Okay. This problem is from "Objects,Abstraction,Data Structures and Design using C++" by Elliot Koffman and Paul Wolf Gang pg127. #2
Implement an array- based program application that manages a collection of DVDs. The data for each DVD will consist of a title , a category, running time, year of release, and price. The user should be able to add new DVDs, to the collection, remove DVD, edit the information stored for a DVD,list all DVDs in a specified category, and retrieve and display the information saved for a DVD given its title.
I need some ideas, especially on creating the remove, add ,and edit functions.