HomeAbout

Characteristic

Hash table stores key-value pairs but the key is generated through a hashing function.

  • That makes accessing the data faster as the index value behaves as a key for the data value.

In Python, the Dictionary data types represent the implementation of hash tables.

AboutContact