Labs / Computer Science

Hash Table

Every key is run through a hash function that picks a bucket, then dropped in. When two keys pick the same bucket they collide and hang off the same chain. Insert keys, resize the table, or swap in a worse hash function and watch the chains grow.

items 0α 0.00longest 0collisions 0

What to try