Hash Table
Introduction and Contents
Hash Table is a data structure which organizes data using hash functions in order to support quick insertion and search.
There are two different kinds of hash tables:- Hash set and Hash map.
The
hash setis one of the implementations of asetdata structure to storeno repeated values.The
hash mapis one of the implementations of amapdata structure to store(key, value)pairs.
Contents:-
Designing and DefinitionsProblemsLast updated
Was this helpful?