An open API service indexing awesome lists of open source software.

https://github.com/lukaspietzschmann/hash-map

An implementation of a Hash-Map in Java
https://github.com/lukaspietzschmann/hash-map

hash-map java

Last synced: 7 months ago
JSON representation

An implementation of a Hash-Map in Java

Awesome Lists containing this project

README

          

# Hash-Map
This is an implementation of a Hash-Map in Java.

It provides:
* two ways for calculating the index of a specific key
* multiplication and division method
* two ways for dealing with Hash-Collisions
* open addressing and chaining
* Open addressing has support for linear and quadratic probing and double hashing

# Usage
Just Copy-Paste the Code into your project and start using the HashTable class.