what should answer to this google-interview?
What is the most efficient way to choose a random value in a stream? Given that each of them has a chance of occurring equally.
Thanks.
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
There's no specific answer they're looking for. They're asking for you to ask the right questions and to see if you can reason about the problem. Asking for the answer is the worst possible thing you could do to understand a question like this. A good answer might start like this: "Do we know how many items are in the stream? Can we count the items without fully reading them in? Can we rewind the stream? Can we assume I/O is much more expensive than anything else and minimizing I/O is our primary design consideration? ..." They may also be looking to see if you know the 1/n algorithm. You can wind up with a random object, equally weighted, from a stream of objects by using the following algorithm:
If you don't see why this is, think it through. If there's only one object, we hold that object at the end. Okay, that's correct. If there are two objects, we are equally likely to hold either object because we swap with probability 1/2. If there are three objects, we hold the third object with probability 1/3 (because that's the last step), and we just proved we are equally likely to be holding the other two objects, so they must each be 1/3. And so on. If you prefer pure math, you can prove by induction that the product of |
||||
|
|