-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBloomFilterDet.java
More file actions
61 lines (47 loc) · 1.29 KB
/
BloomFilterDet.java
File metadata and controls
61 lines (47 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import java.util.BitSet;
public class BloomFilterDet {
private final int PRIME32 = 16777619;
private final int HASH32 = 12345678;
protected BitSet bitArray;
protected int filterSize;
protected int numHashes;
protected int dataSize;
public BloomFilterDet(int setSize, int bitsPerElement) {
this.filterSize = setSize * bitsPerElement;
this.bitArray = new BitSet(this.filterSize);
this.numHashes = (int) Math.round(Math.log(2) * bitsPerElement);
}
public void add(String s) {
s.toLowerCase();
long hash = this.HASH32;
for(int i = 0; i < this.numHashes; i++) {
for(int j = 0; j < s.length(); j++) {
hash = (hash * this.PRIME32) % this.filterSize;
hash ^= s.charAt(j);
}
this.bitArray.set((int) hash);
}
this.dataSize++;
}
public boolean appears(String s) {
s.toLowerCase();
long hash = this.HASH32;
for(int i = 0; i < this.numHashes; i++) {
for(int j = 0; j < s.length(); j++) {
hash = (hash * this.PRIME32) % this.filterSize;
hash ^= s.charAt(j);
}
if(!this.bitArray.get((int) hash)) return false;
}
return true;
}
public int filterSize() {
return this.filterSize;
}
public int numHashes() {
return this.numHashes;
}
public int dataSize() {
return this.dataSize;
}
}