/Hash-Table

A hash table is a data structure that implements an associative array abstract data type, a structure that can map keys to values. Lookups are O(1). Collisions are solved using chaining method in which chained indexes are O(n).

Primary LanguageC++

No issues in this repository yet.