This is the archived version of this course from the Spring 2013 semester. You might find something more recent by visitning my teaching page.
We want a data structure that supports the Set ADT:
In class we came up with the following idea: use a hash table of boolean values, initially all set to "false". When you "insert" an item \(x\) into the set, you compute the hash value of that element \(h(x)\), and then set the entry at position \(h(x)\) in the hash table to "true". Testing membership of an element \(y\) is then just looking at position \(h(y)\) in the table and seeing whether that table entry is set to "true".
I'm going to ask some questions about this idea as a series of problems. You can turn these in all on the same page, but please number each problem very clearly if you do.
Question 1: What is the worst-case cost of insert and membership-testing in this hash-table-set?