Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Programming question: For this exercise, you are to implement a simple hash table, your program will prompt for the name of an input file

C++ Programming question:

For this exercise, you are to implement a simple hash table, your program will prompt for the name of an input file and the read and process the data contained in this file. The file contains a sequence of integer values. Read them and construct a hash table using chaining. For this exercise, you may use dynamic data for chains greater than one in length, but the majority of the dictionary should be an array of hash nodes. Read each, integer in turn and calculate its hash value using mod 100 as the hashing function.

Thus, is if the key is k, the hash value h(k) = k mod 100.

When you have finished calculate:

1. The number of empty entries in the hash table.

2. The length of the longest chain.

do not use classes or STL.

thank you for your help!

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

Databases In Networked Information Systems 6th International Workshop Dnis 2010 Aizu Wakamatsu Japan March 2010 Proceedings Lncs 5999

Authors: Shinji Kikuchi ,Shelly Sachdeva ,Subhash Bhalla

2010th Edition

3642120377, 978-3642120374

More Books

Students also viewed these Databases questions

Question

2. How will the team select a leader?

Answered: 1 week ago

Question

3. What may be the goal of the team?

Answered: 1 week ago