Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 374 Bytes

hash_map.md

File metadata and controls

7 lines (5 loc) · 374 Bytes

Hash map

A collection data structure that uses a hash function to associate a key with a particular value. Key lookup is usually more efficient than searching through an array, but the hash map requires more memory.