forked from yuzhangcmu/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BloomFilter.java
executable file
·47 lines (36 loc) · 926 Bytes
/
BloomFilter.java
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
package Algorithms;
import java.util.ArrayList;
import java.util.BitSet;
public class BloomFilter {
public class HashFunc {
public int callFun(String s) {
return 0;
}
}
BitSet bits;
int n;
public BloomFilter(int n, ArrayList<HashFunc> list) {
super();
this.bits = new BitSet(n);
this.n = n;
this.list = list;
}
ArrayList<HashFunc> list;
public void add(String s) {
for (HashFunc fun: list) {
int code = fun.callFun(s);
code = code % n;
bits.set(code);
}
}
public boolean contains(String s) {
for (HashFunc fun: list) {
int code = fun.callFun(s);
code = code % n;
if (!bits.get(code)) {
return false;
}
}
return true;
}
}