Top Categories
Hash Table - Data Structures & Algorithms Tutorials In Python #5
- Category:
- Sub Category:
Hash map or hash table is a very popular data structure. It allows to store key, value pairs and using key you can locate a value in O(1) or constant time. We will implement simple hash table in python in this tutorial and in part 2 we will see how to handle collisions.