Question
In this programming assignment, you are about to write an object-oriented program to mimic a library. Each book in the library is represented by a
In this programming assignment, you are about to write an object-oriented program to mimic a library. Each book in the library is represented by a unique ISBN number. Librarians are able to search, add, and delete books from library catalogs. Library patrons are able to search and print out the information of a book (in this case only ISBN). The following are the tasks you will complete:. 2. Create a C++ class named Library and a class named Book. You need to implement Class Library via a dynamic array so that the capacity of the library (that is, the maximum number of books) can be specified by the users. In doing so, in class Library define two private member variables: Book * books; int numOfBooks; Variable books is a pointer to a Book object. In the constructors of class Library, you need to use new operator to create a dynamic array and let variable books point to the array. Also, you need to have a user-defined destructor for class Library to release the memory of the array dynamically created, because it is placed on the heap memory region and needs to be removed by programmer once the function where the array variable resides is returned. 3. Class Book includes a private member variable isbn and constructors and a number of public functions. 4. The public functions defined in class Library include a parameterized constructor, a copy constructor, a destructor, search, insert, delete, and print functions, etc. 5. In the client program, there are two Library objects being created. Observe the number of books in each Library object and make sure your program outputs correct results. 6. Thoroughly test your program to make sure all possible cases are tested. A sample test is given in the bottom section of client.cpp as comments.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started