Filtering: sets con poca memoria

Sets

x = {a, b, d}

y = {a, c}

x & y = {a}

x + y = {a, b, c, d}

x - y = {b, d}

Filtros de Bloom

Struct Bloom {

Char* bitmap,

hash_t func,

}

Primitivas