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
- Host: GitHub
- URL: https://github.com/lukaspietzschmann/hash-map
- Owner: LukasPietzschmann
- License: mit
- Created: 2019-11-07T10:54:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-03T08:31:07.000Z (about 6 years ago)
- Last Synced: 2025-02-15T13:38:47.441Z (over 1 year ago)
- Topics: hash-map, java
- Language: Java
- Homepage:
- Size: 136 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.