Skip to content

Hash Table with Separate Chaining and Linear Probing in Java

Notifications You must be signed in to change notification settings

sideffectjava/Hashtable-DS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Hashtable Implementation using below ways:

  1. Separate Chaining: Each cell of hash table point to a linked list of records that have same hash function value.

  2. Open Addressing: All elements are stored in the hash table itself. Each table entry contains either a record or NULL. If there is any collision (i.e. two different elements have same hash value) then store the element to next index.

About

Hash Table with Separate Chaining and Linear Probing in Java

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages