What are Bloom Filters?(medium.com)
medium.com
What are Bloom Filters?
https://medium.com/p/1ec2a50c68ff
2 comments
Is a data structure (based in probability) that can be used to do queries about if an item is in a set. If the item is not in the collection you obtain a "100% probability of not in the set", if your item is in the set you obtain instead a "maybe in the collection".
Corsera has a course from Stanford on Algorithm Design. They explain it really well there.