Answered step by step
Verified Expert Solution
Question
1 Approved Answer
c++, Please dont work others code! thank you in advance Book Recommender System Write a Library class such that libraryDriver.cpp can make use of functions
c++, Please dont work others code! thank you in advance
Book Recommender System Write a Library class such that libraryDriver.cpp can make use of functions in the Library class to create a book recommendation system. The Library class should have the following two private data members: an array of Book objects books an array of User objects users The libraryDriver program will need to have the following features: 1. Load book data and user data from text files. A user must be created for ever user in the ratings.txt file, and a book must be created for every book in the books.txt. 2. a) Login. (There are no passwords. Anyone can log in as anyone else simply by providing their name.) After the data is loaded, welcome the user to the library and ask them to enter their name. If a user has interacted with the system before, the system should remember the user's previous ratings 2. b) Add new user. If it is a user's first time interacting with the system, they should be added to the list of users After welcoming the user, present the user with 4 choices: o 1. View your ratings o 2, Rate a book o 3. Get book recommendations o 4. Quit Book Recommender System Write a Library class such that libraryDriver.cpp can make use of functions in the Library class to create a book recommendation system. The Library class should have the following two private data members: an array of Book objects books an array of User objects users The libraryDriver program will need to have the following features: 1. Load book data and user data from text files. A user must be created for ever user in the ratings.txt file, and a book must be created for every book in the books.txt. 2. a) Login. (There are no passwords. Anyone can log in as anyone else simply by providing their name.) After the data is loaded, welcome the user to the library and ask them to enter their name. If a user has interacted with the system before, the system should remember the user's previous ratings 2. b) Add new user. If it is a user's first time interacting with the system, they should be added to the list of users After welcoming the user, present the user with 4 choices: o 1. View your ratings o 2, Rate a book o 3. Get book recommendations o 4. QuitStep 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