public class BloomFilter extends Filter
The Bloom filter is a data structure that was introduced in 1970 and that has been adopted by the networking research community in the past decade thanks to the bandwidth efficiencies that it offers for the transmission of set membership information between networked hosts. A sender encodes the information into a bit vector, the Bloom filter, that is more compact than a conventional representation. Computation and space costs for construction are linear in the number of elements. The receiver uses the filter to test whether various elements are members of the set. Though the filter will occasionally return a false positive, it will never return a false negative. When creating the filter, the sender can choose its desired point in a trade-off between the false positive rate and the size.
Originally created by European Commission One-Lab Project 034819.
hash, hashType, nbHash, vectorSize| 构造器和说明 |
|---|
BloomFilter()
Default constructor - use with readFields
|
BloomFilter(int vectorSize,
int nbHash,
int hashType)
Constructor
|
| 限定符和类型 | 方法和说明 |
|---|---|
void |
add(Key key)
Adds a key to this filter.
|
void |
and(Filter filter)
Peforms a logical AND between this filter and a specified filter.
|
int |
getVectorSize() |
boolean |
membershipTest(Key key)
Determines wether a specified key belongs to this filter.
|
void |
not()
Performs a logical NOT on this filter.
|
void |
or(Filter filter)
Peforms a logical OR between this filter and a specified filter.
|
void |
readFields(DataInput in)
Deserialize the fields of this object from
in. |
String |
toString() |
void |
write(DataOutput out)
Serialize the fields of this object to
out. |
void |
xor(Filter filter)
Peforms a logical XOR between this filter and a specified filter.
|
public BloomFilter()
public BloomFilter(int vectorSize,
int nbHash,
int hashType)
vectorSize - The vector size of this filter.nbHash - The number of hash function to consider.hashType - type of the hashing function (see
Hash).public void and(Filter filter)
FilterInvariant: The result is assigned to this filter.
public boolean membershipTest(@NonNull Key key)
FiltermembershipTest 在类中 Filterkey - The key to test.public void not()
FilterThe result is assigned to this filter.
public void or(Filter filter)
FilterInvariant: The result is assigned to this filter.
public void xor(Filter filter)
FilterInvariant: The result is assigned to this filter.
public int getVectorSize()
public void write(DataOutput out) throws IOException
Writableout.write 在接口中 Writablewrite 在类中 Filterout - DataOuput to serialize this object into.IOExceptionpublic void readFields(DataInput in) throws IOException
Writablein.
For efficiency, implementations should attempt to re-use storage in the existing object where possible.
readFields 在接口中 WritablereadFields 在类中 Filterin - DataInput to deseriablize this object from.IOExceptionCopyright © 2022. All rights reserved.