I was given this problem in an interview. How would you have answered?
Design a data structure that offers the following operations in O(1) time:
- insert
- remove
- contains
- get random element
|
I was given this problem in an interview. How would you have answered? Design a data structure that offers the following operations in O(1) time:
| |||||||
feedback
|
|
Consider a data structure composed of a hashtable H and an array A. The hashtable keys are the elements in the data structure, and the values are their positions in the array.
since the array needs to auto-increase in size, it's going to be amortize O(1) to add an element, but I guess that's OK. | |||
feedback
|
|
O(1) lookup implies a hashed data structure. By comparison:
| |||||||||||
feedback
|
|
Here is a C# solution to that problem I came up with a little while back when asked the same question. It implements Add, Remove, Contains, and Random along with other standard .NET interfaces. Not that you would ever need to implement it in such detail during an interview but it's nice to have a concrete solution to look at...
| |||
|
feedback
|
|
The best solution is probably the hash table + array, it's real fast and deterministic. But the lowest rated answer (just use a hash table!) is actually great too!
People might not like this because of "possible infinite loops", and I've seen very smart people have this reaction too, but it's wrong! Infinitely unlikely events just don't happen. Assuming the good behavior of your pseudo-random source -- which is not hard to establish for this particular behavior -- and that hash tables are always at least 20% full, it's easy to see that: It will never happen that getRandom() has to try more than 1000 times. Just never. Indeed, the probability of such an event is 0.8^1000, which is 10^-97 -- so we'd have to repeat it 10^88 times to have one chance in a billion of it ever happening once. Even if this program was running full-time on all computers of humankind until the Sun dies, this will never happen. | |||
|
feedback
|
|
You might not like this, because they're probably looking for a clever solution, but sometimes it pays to stick to your guns... A hash table already satisfies the requirements - probably better overall than anything else will (albeit obviously in amortised constant time, and with different compromises to other solutions). The requirement that's tricky is the "random element" selection: in a hash table, you would need to scan or probe for such an element. The chance of any given bucket being occupied is I can imagine two simple approaches (and a great many more fiddly ones):
Not a great solution, but may still be a better overall compromise than the memory and performance overheads of maintaining a second index array at all times. | ||||
|
feedback
|
|
In C# 3.0 + .NET Framework 4, a generic
However, as far as I know, a Hashtable (or its Dictionary progeny) is not a real solution to this problem because Put() can only be amortized O(1) , not true O(1) , because it is O(N) at the dynamic resize boundary. Is there a real solution to this problem ? All I can think of is if you specify a Dictionary/Hashtable initial capacity an order of magnitude beyond what you anticipate ever needing, then you get O(1) operations because you never need to resize. | ||||
|
feedback
|