Program # 1 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 th

Program # 1

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.

A sample of the input/output behavior might look as follows. Your I/O need not look identical, this is just to give you an idea of the functionality.

Select from the following choices:

1.      Add new book

2.      Print listing sorted by author

3.      Quit

Choice : 1

Enter title:

Problem solving with c++

Enter author:

Savitch, walter

Enter date:

2006

Select from the following choices:

1.      Add new book

2.      Print listing sorted by author

3.      Quit

Choice : 2

The books entered so far, sorted alphabetically by author are:

Savitch, walter. Problem Solving with C++. 2006.

Sturgeon, Theodore, More Than Human. 1953.

Select from the following choices:

1.      Add new book

2.      Print listing sorted by author

3.      Quit

Choice : 1

Enter title:

At Home in the Universe

Enter author:

Kauffman

Enter date:

1996

Select from the following choices:

1.      Add new book

2.      Print listing sorted by author

3.      Quit

Choice : 2

The books entered so far, sorted alphatetically by artist are:

Kauffman, At Home in the Universe, 1996.

Savitch, walter. Problem Solving with C++. 2006.

Sturgeon, Theodore, More Than Human. 1953.

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;

}

Program # 2

Write a program to implement English Dictionary that contains data members as word, meaning, synonym, antonym and example_sentence. Use an appropriate STL container and apply the relevant algorithms to maintain the sense of Dictionary.

Part B

Program #3

A frequency table lists words and the number of times each word appears in a text file.Write a program that creates a frequency table for a file whose name is entered by theuser. You can use a map of string-int pairs. You may want to use the C library functionispunct() (in header file CTYPE.H) to check for punctuation so you can strip it off theend of a word, using the string member function substr(). Also, the tolower() functionmay prove handy for uncapitalizing words.

Program #4

Create a single linked list that contains the data (age) of your friends. Perform basic operations including insertion, deletion, searching and display. The insertion operation should only allow a friend’s data to be inserted in sorted order only.

Part C

Program #5

Create a student hash table that contains information, studentID (int), name (string), marks_oop345 (float). The size of hash table is equal to the number of students in the class. Use linear probing in case of collisions. Perform insertion, deletion, display and search operations. 







Place your order
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more

Enjoy 10% OFF today with the coupon code: save10