Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

plz do this using C++ Purpose: Use the Hashtable Data Structure Create a DynamicArray (specification described below) and using your Doubly-Linked list to create a

plz do this using C++

Purpose: Use the Hashtable Data Structure

Create a DynamicArray (specification described below) and using your Doubly-Linked list to create a Hashtable. The Hashtable is a DynamicArray of LinkedLists. The LinkedLists handle the collisions. Read the Customer.csv data file and store it in a ADT. For example:

class Customer string lastname string firstname string id Sample Data: perez,diana,86824983-3587182 oxford,greg,49451687-6884854 smith,tsung,34722447-9802850 Place each ADT data object into the Hashtable structure using your choice of 3 of the hashing techniques listed in chapter 5(Chaining, Linear probing, and Quadratic. I recommend coding a Hashing Function based on the Customer-id, but you could also use either the first of last name fields. Programmatically determine which of the 3 hashing techniques yields the fewest collisions.

Specification for Dynamic Array:

1. Create a generic structure that can hold any type of data 2. Create a Container that allocates blocks of data in units of 10 3. Using the Customer.csv file data: a. Read in the Customer.csv data file and store each line in Credit Card object b. Insert each Customer object into the container's block c. When the number of Customer objects exceed the container's block size, allocate a new block to double the size of the existing block and copy the data from the old block to the new block. 4. Implement the INSERT and RESIZE functions for your Dynamic Array.

Note: This container must also use integer INDEXES, like an array does, to randomly access the data in the container. In C++, the bracket [ ] operator can be used to support indexing.

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

Relational Database And Transact SQL

Authors: Lucy Scott

1st Edition

1974679985, 978-1974679980

More Books

Students also viewed these Databases questions