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
Step: 1
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...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