Skip to content

14w10/My-Own-Hash-Map

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My Own Map

  • ListBasedMap, which represented a map as a linked list of key-value pairs;
  • HashMapBackedByLists, which represented a map as an array of buckets, where each bucket was a ListBasedMap, and where hashing was used to associate a key with one of the buckets.
  • TreeBasedMap, which represented a map by a binary search tree.
  • Making list-based maps and hashmaps thread-safe.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published