Package dev.tylermong.customhashmap
package dev.tylermong.customhashmap
This package contains all the classes for the CustomHashMap project. It includes the
CustomHashMap class,
which implements a custom hash map data structure, the Entry class, which represents a key-value pair in the
hash map, the CustomHashMapTester class, which contains unit and performance tests for the
CustomHashMap class, and the Main class, which serves as the entry point for the application.- Version:
- 1.0
- Author:
- Tyler Mong
-
ClassesClassDescriptionCustomHashMap<K,
V> This class is a custom implementation of aHashMapdata structure using an array of linked lists for each bucket.This class tests the functionality of the CustomHashMap class and compares its performance with the Java HashMap.Entry<K,V> This class represents an entry in the custom hash map.This class serves as the entry point for the application.