[SOLVED] CSCI203 Lab5– Hashing

30.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You will receive the following solution file(s) instantly after successful payment:

zip file icon CSCI203-Excercise-5-gpdt8b.zip (475.2 KB)
Assignment Instructions Updated Recently? Submit Below and we will provide new Solution!
Submit New Instructions
🔒 Securely Powered by:
Secure Checkout
Rate this product

For this exercise, you are to implement a simple hash table.

As usual, your program will prompt for the name of an input file and the read and process the data contained in this file.

A sample file, ex5.txt, has been provided for test purposes.

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.

Your program should output these two values – these should be the only outputs.

As usual, do not use classes or STL.

  • CSCI203-Excercise-5-gpdt8b.zip