Math Problem Statement

Suppose a hash table is constructed using linked lists to store the data within each bin, and that collisions are resolved by chaining. Suppose n elements have been inserted into the hash table. What is the worst case time complexity of querying whether an object exists within the hash table? You may assume that the hash table will not need to be resized, and that evaluating the hash function takes Θ(1) time.

Solution