You are to create a database of books that are stored using a vector. Keep track of the author, title and publication date of each book. Your program should have a main menu that allows the user to select from the following: Add a book’s author, title, and date Print an alphabetical list of the books sorted by author Quit You must use a class to hold the data for each book. This class must hold three string fields, one to hold the author’s name, one for the publication date, and another to hold the book’s title. Store the entire database of books in a vector where each vector element is a book class object. To sort the data, use the generic sort function from the library. Note that this requires you to define the using namespace std;   class Book { public:             Book(); Book(string new_author, string new_title, string new_date); void setData(string new_author, string new_title, string new_date);             string getAuthor() const; string getTitle() const; string getDate() const; friend bool operator< (const Book &book1, const Book &book2); private:             string author, title, date; }; #endif Book.cpp Add the definitions of data members of class Book. The definition of friend function should be (in Book.cpp): bool operator< (const Book &book1, const Book &book2) {             return (book1.author < book2.author); } TestProgram.cpp Don’t forget to add header files, vector and algorithm along with other required header files.   using namespace std;   void AddNewBook(vector *bookdata); void PrintBooks(vector &bookdata); void SortBooks(vector &bookdata); void PrintMenu();   int main() {             vector bookdata;               //Add your logic to test your class, using functions mentioned above               return 0; }

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

You are to create a database of books that are stored using a vector. Keep track of the author, title and publication date of each book. Your program should have a main menu that allows the user to select from the following:

  1. Add a book’s author, title, and date
  2. Print an alphabetical list of the books sorted by author
  3. Quit

You must use a class to hold the data for each book. This class must hold three string fields, one to hold the author’s name, one for the publication date, and another to hold the book’s title. Store the entire database of books in a vector where each vector element is a book class object.

To sort the data, use the generic sort function from the <algorithm> library. Note that this requires you to define the <operator to compare two objects of type book so that the author field from the two books are compared.

 

Note: you are required to create three files, Book.h, Book.cpp and TestProgram.cpp.

Book.h

 

#ifndef BOOK_H

#define BOOK_H

 

#include <string>

using namespace std;

 

class Book

{

public:

            Book();

Book(string new_author, string new_title, string new_date);

void setData(string new_author, string new_title, string new_date);

            string getAuthor() const;

string getTitle() const;

string getDate() const;

friend bool operator< (const Book &book1, const Book &book2);

private:

            string author, title, date;

};

#endif

Book.cpp

Add the definitions of data members of class Book. The definition of friend function should be (in Book.cpp):

bool operator< (const Book &book1, const Book &book2)

{

            return (book1.author < book2.author);

}

TestProgram.cpp

Don’t forget to add header files, vector and algorithm along with other required header files.

 

using namespace std;

 

void AddNewBook(vector<Book> *bookdata);

void PrintBooks(vector<Book> &bookdata);

void SortBooks(vector<Book> &bookdata);

void PrintMenu();

 

int main()

{

            vector<Book> bookdata;

 

            //Add your logic to test your class, using functions mentioned above

 

            return 0;

}

 

 

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY