Dynamic Count Filter(DCF)布隆过滤器 Python实现

做竞赛项目用到了这个,看到网上只有C的实现,项目用的py想都一起写成py吧,于是用numpy写了一个。

参考:https://blog.csdn.net/jiaomeng/article/details/1619321
里面有几种不同的布隆筛(Bloom Filter & CBF & DCF)的C实现,很棒。
btw,上面的链接中那位博主提供的代码需科学上网才能下载

:博主水平非常一般,有错误的话欢迎指正…

以下是源码:

import numpy as np
import mmh3

class DCF(set):
	def __init__(self, m, x, y, k):
		self.CBFV = np.zeros((m, x), dtype=np.bool)
		self.OFV = np.zeros((m, y), dtype=np.bool)
		self.hash_count = k
		self.len = m
		self.CBFV_bit = x
		self.OFV_bit = y

	def add(self, item):
		for i in range(self.hash_count):
			index = mmh3.hash(item, i) % self.len
			count = compute(self.CBFV[index])
			if (count == 2**self.CBFV_bit):
				f = compute(self.OFV[index])
				f += 1
				self.OFV[index] = decompute(f, self.OFV_bit)
			else:
				count += 1
				self.CBFV[index] =
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值