Hash Table Visualiser

Insert, search and delete key-value pairs and watch the hash function and collision resolution work step by step.

Table Size
Collision
Hash Table | Size 11 | Linear Probing
Hash function used: index = (sum of ASCII values of key characters) mod table_size.
Prime table sizes reduce clustering and collisions. Groups can wrap around the edges of the table with linear probing.

Operations

Key
Value

Step Log

No operations yet. Insert a key-value pair to begin.