Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In C++, we will be working with Table Abstractions. A Table ADT allows us to search on the value of the data without requiring a

In C++, we will be working with Table Abstractions. A Table ADT allows us to search on the value of the data without requiring a particular location to be known. It allows us to store the data using non-linear techniques. A hash table comes to mind as a good alternative for programs that require working by value but that dont require that the data be sorted.

Goal: The goal of the third program is to create a hash table using chaining. Hash tables are very useful in situations where an individual wants to quickly find their data by the value or search key. The client program uses a key instead of an index to get to the data. The key is then mapped through a hash function which supplies an index!

Specifics: Have you ever wanted to find information on the web just to have to go through so many websites and posts that were irrelevant. Once you find a great website with valuable (and correct) information, making it a favorite is nice but at some point how many favorites do you have and it becomes difficult to filter through. In program#3, you are going to have the client program search by topic (e.g., Hash Functions or Finance) and retrieve all of the website information that you have collected about that topic.

For each topic, keep track of the following information

Topic name (e.g., Data Structures)

Website address

(e.g., )

Summary of what you can find at this address (e.g., The classic, best-selling Data Abstraction and Problem Solving with C++: Walls and Mirrors book provides a firm foundation in data structures)

Review (e.g., your thoughts about how helpful this site is)

Rating (1-5 stars 1 being not very useful, 5 being very useful)

Data Structures: Write a C++ program that implements and uses a table abstract data type using a hash table (with chaining) to add a new websites information and your review, retrieve all websites for a given topic, edit a website to modify the review and rating, remove all websites with a 1 star rating, and display all matches for a given topic, and then a display all (not in order!).

This means that retrieve will need an array of websites as an argument (you may use a class or struct for an individual website) for the ADT to fill. Retrieve needs to also know how many at most it can find (and integer argument) and return a success/fail flag for whether or not it found a match. Retrieves arguments might be something like:

bool retrieve(char * topic_keyword, website all_matches[], int & num_found);

Retrieve should not correspond with the user (i.e., it should not prompt, echo, input, or output data).

Evaluate the performance of storing and retrieving items from this table. Monitor the number of collisions that occur for a given set of data that you select. Make sure your hash tables size is a prime number. Try different table sizes, and evaluate the performance (i.e., the length of the chains!). Your efficiency writeup must discuss what you have discovered.

In summary, the required functions for your TABLE ADT are:

Constructor

Destructor (deallocate the hash table)

Insert a new website by topic (add websites information into the hash table)

Retrieve (retrieve all websites based on the topic keyword supplied)

Edit (modify the review and rating for a particular topic and website match)

Remove (remove all websites with a 1 star rating)

Display (only displaying matches, based on the topic keyword)

Display all

The data must originally be retrieved from an external data file. This is required for this assignment. In order to properly evaluate the hash function chosen, we need a large data set! However: your program will not be removing or modifying the data from the file.

Things you should know...as part of your program:

1. Do not use statically allocated arrays in your classes or structures. All memory must be dynamically allocated and kept to a minimum!

2. All data members in a class must be private

3. Never perform input operations from your class

4. Global variables are not allowed

5. Do not use the String class! (use arrays of characters instead and the cstring library!)

6. Use modular design, separating the .h files from the .cpp files. Remember, .h files should contain the class header and any necessary prototypes. The .cpp files should contain function definitions. You must have at least 1 .h file and 2 .cpp files. Never "#include" .cpp files!

7. Use the iostream library for all I/O; do not use stdio.h.

8. Make sure to define a constructor and destructor for your class. Your destructor must deallocate all dynamically allocated memory.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Driven Web Sites

Authors: Joline Morrison, Mike Morrison

2nd Edition

ISBN: ? 061906448X, 978-0619064488

More Books

Students also viewed these Databases questions

Question

What are the main differences between rigid and flexible pavements?

Answered: 1 week ago

Question

What is the purpose of a retaining wall, and how is it designed?

Answered: 1 week ago

Question

How do you determine the load-bearing capacity of a soil?

Answered: 1 week ago

Question

what is Edward Lemieux effect / Anomeric effect ?

Answered: 1 week ago

Question

Why do HCMSs exist? Do they change over time?

Answered: 1 week ago