Hash tables-java coding

 Assignment Description: The goal of this assignment is to work with hash functions and understand the performance of the Division method using open addressing techniques discussed in the slides. Page 2 Write one simple program that uses a fixed set of 50 unique keys stored in an array as follows (Important: hard-code the array content in your program and make sure you have same exact key values below in the same order): int[] keys = {1234, 8234, 7867, 1009, 5438, 4312, 3420, 9487, 5418, 5299,  5078, 8239, 1208, 5098, 5195, 5329, 4543, 3344, 7698, 5412,  5567, 5672, 7934, 1254, 6091, 8732, 3095, 1975, 3843, 5589,  5439, 8907, 4097, 3096, 4310, 5298, 9156, 3895, 6673, 7871,  5787, 9289, 4553, 7822, 8755, 3398, 6774, 8289, 7665, 5523}; The program allows the user to select a hash function, from the menu, to be invoked on the set of keys. Keep it simple as follows: —–MAIN MENU—– 0 – Exit Program 1 – Run HF1 (Division with Linear Probing) 2 – Run HF2 (Division with Quadratic Probing) 3 – Run HF3 (Division with Double Hashing) 4 – Run HF4 (Student-Designed Function) The hash functions are defined below. To keep the implementation simple, design the hash table (call it Table) (of size 50) as a 2D array (50 rows and 2 columns) (int[][] Table = new int[50][2];) The first column stores the keys while the second column stores number of probes used to resolve collisions. After calling the hash function from the menu, the output of the program should display the hash table followed by the sum of all probe values in the table. Declare a separate method in your class, say sumProbes(), to perform this calculation and return the sum of all probes in the table (second column of the table). Note that the total number of probes a hashing function generates indicates the performance level of the function – The smaller the sum of probes the better the hash function. HF1: Declare a separate method HF1() that implements the Division method discussed in the slides with Linear Probing for collision resolution. HF2: Declare a separate method HF2() that implements the Division method discussed in the slides with Quadratic Probing for collision resolution. HF3: Declare a separate method HF3() that implements the Division method discussed in the slides with Double Hashing for collision resolution. For the second hashing function, use the following function and increment (see example in slides)  H2 (key) = 30 – key % 25;  Increment is (key % 50) + j * H2 (key) for j=1, 2, 3, 4, … Note: It is possible that HF3 will not be able to determine and empty index in the hash table for a give key, especially when very few empty entries remain in the hash table. I this care and to avoid entering into an infinite loop, limit number of attempt to locate a key in the hash table to no more than 50 tries. In such case, printout a message like this example: “Unable to has key 43654 to the table”. Page 3 Note this phenomenon happen due to not applying Load Factoring to our table. HF4: Declare a separate method HF4() that implements a hash function of your own design. The sky is your limit. You can come up with your own hash function or take and improve one of the above three functions by either using a different hashing method (other than Division method) or a different collision resolution method. Aim to come up with a function that beats the above three function (i.e., your function generates smallest number of probes for the given set of keys). Note: See the note in HF3 and apply it to you HF4 if necessary. The assignment is very specific and it must be implemented as specified. Any deviation from these requirements is not acceptable and receives no points. No exceptions. Only complete and correct code receives credit. Code must compile and run on its own as received. Using code from outside sources receives NO credit. Format the output following the sample run below. Sample output for format illustration purpose only (Our table is of size 50 elements) Hash table resulted from HF2: Index Key probes ————————  0 4576 0  1 9876 2  2 2341 0  3 8722 3  4 9988 4  5 1111 0  6 3443 1  7 4444 0  8 7788 1  9 2321 0 ———————— Sum of probe values = 11 probes. 

Calculate the price
Make an order in advance and get the best price
Pages (550 words)
$0.00
*Price with a welcome 15% discount applied.
Pro tip: If you want to save more money and pay the lowest price, you need to set a more extended deadline.
We know how difficult it is to be a student these days. That's why our prices are one of the most affordable on the market, and there are no hidden fees.

Instead, we offer bonuses, discounts, and free services to make your experience outstanding.
How it works
Receive a 100% original paper that will pass Turnitin from a top essay writing service
step 1
Upload your instructions
Fill out the order form and provide paper details. You can even attach screenshots or add additional instructions later. If something is not clear or missing, the writer will contact you for clarification.
Pro service tips
How to get the most out of your experience with MyhomeworkGeeks
One writer throughout the entire course
If you like the writer, you can hire them again. Just copy & paste their ID on the order form ("Preferred Writer's ID" field). This way, your vocabulary will be uniform, and the writer will be aware of your needs.
The same paper from different writers
You can order essay or any other work from two different writers to choose the best one or give another version to a friend. This can be done through the add-on "Same paper from another writer."
Copy of sources used by the writer
Our college essay writers work with ScienceDirect and other databases. They can send you articles or materials used in PDF or through screenshots. Just tick the "Copy of sources" field on the order form.
Testimonials
See why 20k+ students have chosen us as their sole writing assistance provider
Check out the latest reviews and opinions submitted by real customers worldwide and make an informed decision.
Marketing
excellent work
Customer 452773, September 25th, 2024
Business Studies
Thank you very much for a good job done and a quick turn around time.
Customer 452615, March 31st, 2021
Human Resources Management (HRM)
excellent
Customer 452773, June 25th, 2023
English 101
great summery in terms of the time given. it lacks a bit of clarity but otherwise perfect.
Customer 452747, June 9th, 2021
Psychology
Thank you!
Customer 452545, February 6th, 2021
Leadership Studies
excellent job as always
Customer 452773, September 2nd, 2023
Social Work and Human Services
Great work I would love to continue working with this writer thought out the 11 week course.
Customer 452667, May 30th, 2021
management
Did an excellent job once the instructions werre followed
Customer 452773, October 31st, 2024
LEADERSHIP
excellent job
Customer 452773, August 12th, 2023
Data 564
excellent work
Customer 452773, April 11th, 2024
Humanities
Thank youuuu
Customer 452729, May 30th, 2021
Criminal Justice
The paper was not accused of plagiarism and was written very well. I will let you know the grade once it is graded. Thank you
Customer 452671, April 26th, 2021
11,595
Customer reviews in total
96%
Current satisfaction rate
3 pages
Average paper length
37%
Customers referred by a friend
OUR GIFT TO YOU
15% OFF your first order
Use a coupon FIRST15 and enjoy expert help with any task at the most affordable price.
Claim my 15% OFF Order in Chat
Close

Sometimes it is hard to do all the work on your own

Let us help you get a good grade on your paper. Get professional help and free up your time for more important courses. Let us handle your;

  • Dissertations and Thesis
  • Essays
  • All Assignments

  • Research papers
  • Terms Papers
  • Online Classes