Streaming is a set of conditions:
Election with large number n of voters. Each can write in one arbitrary name as their vote The election is won by a candidate with greater than n/2 votes (strict majority) How to find the winner using very little internal storage?
In a pass where a non-winner is the current candidate, votes for the winner will not be counted for the winner later. However, throwing away that vote along with the candidate preserves a total $> \frac{n^'}{2}$ the true winner has.
An office building has one entrance with a guard. Most workers arrive in the morning. They may go out for lunch or breaks. They leave in the evening. The guard wants to know who is still in the building. (not how many, but the identities)
This is a dynamic set problem with add and remove operations. When the set is small, need to report all of its elements.
How to identify the missing number from 1-100 out of the remaining 99?
Use an IBF to keep track during the day. Then at the end of the day use the IBF's decode() function.