Question: Download the HashingExample.zip startup code from the LMS and import into your eclipse. Study it thoroughly. It is a working example. You could run it
Download the HashingExample.zip startup code from the LMS and import into your eclipse. Study it thoroughly. It is a working example. You could run it to check how hash table concept applying and it operation.
Update the code that will perform the followings:
Ask user to insert different values in a hash table.
Ask user to enter key value and search about and display the result.
Allow user to delete key send to delete method and display the result.
THE CODE :
package yuc.edu.sa;
import java.util.Hashtable;
public class HashingExample
private int hashTable new int;
public int hashint ele
return ele this.hashTable.length;
public boolean insertint ele
int pos hashele;
System.out.printlnHashing key pos;
ifthishashTablepos
this.hashTablepos ele;
else
forint i pos ; i this.hashTable.length; i
ifthishashTablei
this.hashTablei ele;
return true;
return true;
public int searchint ele
int loc ;
int pos hashele;
ifhashTablepos ele
loc pos;
else
forint i pos ; i this.hashTable.length; i
ifthishashTablei ele
loc i;
return loc;
public static void mainString args
HashingExample he new HashingExample;
System.out.printlnheinsert;
System.out.printlnheinsert;
System.out.printlnheinsert;
System.out.printlnheinsert;
System.out.printlnheinsert;
System.out.printlnheinsert;
System.out.printlnElement in hash table";
forint i ; i hehashTable.length; i
System.out.printfHashtabledd
i hehashTablei;
int loc hesearch;
ifloc
System.out.printlnElement is not found";
else
System.out.printlnElement is found at index position loc;
loc hesearch;
ifloc
System.out.printlnElement is not found";
else
System.out.printlnElement is found at index position loc;
String str "ABCDEF";
System.out.printlnstrhashCode;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
