What is a Hash Table?

This lesson is a brief introduction to the hash table data structure and the basic principle behind implementing it.

We'll cover the following...

Hashing

Until now, the overall time complexity accomplished by most of the data structures in insertion, deletion, and search was up to O(logn) or O(nlogn), which is pretty good. But for a significantly large amount of data, this complexity starts to adversely affect the ...