Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upAdd nested linked list and node class to hashmap.java #1388
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hashmap.java does not currently run because it lacks a linked list and node class to reference
I think adding a nested linked list class at the bottom of the file is a good work around while also preserving the organization of the repository. Thoughts?
required methods for linked list:
void insert(int z), void delete(int z), void display()