BloomFilter簡易實現

#ifndef __BLOOM_FILTER_HPP__ #define __BLOOM_FILTER_HPP__ #include <cstdlib> #include <cstring> template <typename T> unsigned int GetHash(const T & value) { return(value); } const int prime[]
相關文章
相關標籤/搜索