Question: Book Node: Create a BookNode class to store the Title, Author and ISBN of each book. Provide appropriate constructors, get(), set() and display functions in

Book Node:

Create a BookNode class to store the Title, Author and ISBN of each book. Provide appropriate constructors, get(), set() and display functions in the class.

Problem Description:

Write a C++ program which allows a librarian to manage data for a number of books and store the entered data in a BST. Each node of the BST should contain an object of class BookNode. Data is to be arranged with respect to book title.

You program should allow the librarian to perform any of the given functionalities by giving him a menu to choose from. Basic functionalities include:

1) to add new books’ data

2) to search for a book using title as the search parameter and display all its information

3) to modify an existing book’s data

4) to delete a book’s record

5) to display the list of currently present books

Step by Step Solution

3.38 Rating (157 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Solution Code BookNodeh include include include using namespace std class BookNode private string title string author int ISBN public BookNode left BookNode right BookNode BookNodestring string int vo... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!