Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 302 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 302 Bytes

Simple HashMap

Simple HashMap C++ implementation.

Methods:
  • put(key, value)
  • get(key)
  • remove(key)

Implementation requires KeyHash structre implementation, ==, != and << operator overloaded if key is custom class.

Implementation use open addressing with linear probing (interval = 1).