`
ljl_xyf
  • 浏览: 636780 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

数据结构之BloomFilter

 
阅读更多
  • BloomFilter是什么?

       BloomFilter主要提供两种操作: add()和contains(),作用分别是将元素加入其中以及判断一个元素是否在其中,类似于Java中的Set接口,它内部采用的byte数组来节 省空间。其独特之处在于contains()方法,当我们需要查询某个元素是否包含在BloomFilter中时,如果返回true,结果可能是不正确 的,也就是元素也有可能不在其中;但是如果返回的是false,那么元素一定不在其中。这也就是所谓的no false negative和small probability of  false  positive。通俗地来就是,“说了没有就是没有”,“说有但实际上有可能没有”。

 

  • 为什么要使用BloomFilter?

       任何一种数据结构,特别是比较巧妙的,都有它的应用场景,BloomFilter也不例外。许多实际背景和应用这里不再啰嗦,举个简单例子:我们需要存储 大量的URL,并且对于新得到的URL需要知道是否已经存储了。如果将这些URL全扔进Set,那就悲剧了,内存可吃不消。这个时候就要想到用byte来 存储了,可以节省大量的空间。

 

  • BloomFilter实现

        既然涉及到byte存储,那么必然需要一种映射关系了,也就是需要知道一个元素用哪些byte来表示,这也就是hash函数所干的事情。直观地想,一个元 素一个byte基本上不可能,一般情况下这样的hash函数可以说不存在,所以这里假设用k位来表示,一般采用k次hash来确定这些byte。实际 上,BloomFilter中一般包含m(byte数组的大小),k(hash次数)和n(需要存储的数据量)。 在元素加入实现add()操作时,连续k次hash,将得到的对应k位全置为1。当查询元素是否在集合中时,也是连续k次hash,如果这k次得到的位不 是全为1,那么返回false;否则返回 true。传统的算法优化都是以时间换空间或者以空间换时间,BloomFilter则是以正确率换空间。

Java代码  收藏代码
  1. Class BloomFilter<E> {  
  2.     public BloomFilter(int m, int k){……}  
  3.     public void add(E obj){……}  
  4.     public boolean contains(E obj){……}  
  5. }  

 

  • BloomFilter相关结论

      根据上面的标记,可以采用数学方法推导出false positive的概率大约是p = (1-exp(-kn/m))^k,那么由此可得出,最优的k=ln(2)*(m/n)。我们可以计算一下上面提到的例子,假设共有10000000个 URL(n=10000000),如果采用m=80000000,k=8,得出p大约2%;但是所占用的内存只有10M,相同情况下使用Set则需要1G 的内存。

具体的实现如下(来自项目http://code.google.com/p/java-bloomfilter/,代码实现不错,可直接使用):

Java代码  收藏代码
  1. /** 
  2.  * This program is free software: you can redistribute it and/or modify 
  3.  * it under the terms of the GNU Lesser General Public License as published by 
  4.  * the Free Software Foundation, either version 3 of the License, or 
  5.  * (at your option) any later version. 
  6.  * 
  7.  * This program is distributed in the hope that it will be useful, 
  8.  * but WITHOUT ANY WARRANTY; without even the implied warranty of 
  9.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
  10.  * GNU Lesser General Public License for more details. 
  11.  * 
  12.  * You should have received a copy of the GNU Lesser General Public License 
  13.  * along with this program.  If not, see <http://www.gnu.org/licenses/>. 
  14.  */  
  15.   
  16. package com.skjegstad.utils;  
  17.   
  18. import java.io.Serializable;  
  19. import java.nio.charset.Charset;  
  20. import java.security.MessageDigest;  
  21. import java.security.NoSuchAlgorithmException;  
  22. import java.util.BitSet;  
  23. import java.util.Collection;  
  24.   
  25. /** 
  26.  * Implementation of a Bloom-filter, as described here: 
  27.  * http://en.wikipedia.org/wiki/Bloom_filter 
  28.  * 
  29.  * For updates and bugfixes, see http://github.com/magnuss/java-bloomfilter 
  30.  * 
  31.  * Inspired by the SimpleBloomFilter-class written by Ian Clarke. This 
  32.  * implementation provides a more evenly distributed Hash-function by 
  33.  * using a proper digest instead of the Java RNG. Many of the changes 
  34.  * were proposed in comments in his blog: 
  35.  * http://blog.locut.us/2008/01/12/a-decent-stand-alone-java-bloom-filter-implementation/ 
  36.  * 
  37.  * @param <E> Object type that is to be inserted into the Bloom filter, e.g. String or Integer. 
  38.  * @author Magnus Skjegstad <magnus@skjegstad.com> 
  39.  */  
  40. public class BloomFilter<E> implements Serializable {  
  41.     private BitSet bitset;  
  42.     private int bitSetSize;  
  43.     private double bitsPerElement;  
  44.     private int expectedNumberOfFilterElements;   
  45.     private int numberOfAddedElements;   
  46.     private int k; // number of hash functions  
  47.   
  48.     static final Charset charset = Charset.forName("UTF-8");   
  49.   
  50.     static final String hashName = "MD5";   
  51.     static final MessageDigest digestFunction;  
  52.     static { // The digest method is reused between instances  
  53.         MessageDigest tmp;  
  54.         try {  
  55.             tmp = java.security.MessageDigest.getInstance(hashName);  
  56.         } catch (NoSuchAlgorithmException e) {  
  57.             tmp = null;  
  58.         }  
  59.         digestFunction = tmp;  
  60.     }  
  61.   
  62.     /** 
  63.       * Constructs an empty Bloom filter. The total length of the Bloom filter will be 
  64.       * c*n. 
  65.       * 
  66.       * @param c is the number of bits used per element. 
  67.       * @param n is the expected number of elements the filter will contain. 
  68.       * @param k is the number of hash functions used. 
  69.       */  
  70.     public BloomFilter(double c, int n, int k) {  
  71.       this.expectedNumberOfFilterElements = n;  
  72.       this.k = k;  
  73.       this.bitsPerElement = c;  
  74.       this.bitSetSize = (int)Math.ceil(c * n);  
  75.       numberOfAddedElements = 0;  
  76.       this.bitset = new BitSet(bitSetSize);  
  77.     }  
  78.   
  79.     /** 
  80.      * Constructs an empty Bloom filter. The optimal number of hash functions (k) is estimated from 
  81.      * the total size of the Bloom 
  82.      * and the number of expected elements. 
  83.      * 
  84.      * @param bitSetSize defines how many bits should be used in total for the filter. 
  85.      * @param expectedNumberOElements defines the maximum number of elements the filter is  
  86.      * expected to contain. 
  87.      */  
  88.     public BloomFilter(int bitSetSize, int expectedNumberOElements) {  
  89.         this(bitSetSize / (double)expectedNumberOElements,  
  90.              expectedNumberOElements,  
  91.              (int) Math.round((bitSetSize / (double)expectedNumberOElements) * Math.log(2.0)));  
  92.     }  
  93.   
  94.     /** 
  95.      * Constructs an empty Bloom filter with a given false positive probability. The number of bits per 
  96.      * element and the number of hash functions is estimated 
  97.      * to match the false positive probability. 
  98.      * 
  99.      * @param falsePositiveProbability is the desired false positive probability. 
  100.      * @param expectedNumberOfElements is the expected number of elements in the Bloom filter. 
  101.      */  
  102.     public BloomFilter(double falsePositiveProbability, int expectedNumberOfElements) {  
  103.         this(Math.ceil(-(Math.log(falsePositiveProbability) / Math.log(2))) / Math.log(2),   
  104.              expectedNumberOfElements,  
  105.              (int)Math.ceil(-(Math.log(falsePositiveProbability) / Math.log(2))));   
  106.     }  
  107.   
  108.     /** 
  109.      * Construct a new Bloom filter based on existing Bloom filter data. 
  110.      * 
  111.      * @param bitSetSize defines how many bits should be used for the filter. 
  112.      * @param expectedNumberOfFilterElements defines the maximum number of elements the filter 
  113.      *    is expected to contain. 
  114.      * @param actualNumberOfFilterElements specifies how many elements have been inserted into  
  115.      *    the <code>filterData</code> BitSet. 
  116.      * @param filterData a BitSet representing an existing Bloom filter. 
  117.      */  
  118.     public BloomFilter(int bitSetSize, int expectedNumberOfFilterElements,   
  119.                                                        int actualNumberOfFilterElements, BitSet filterData) {  
  120.         this(bitSetSize, expectedNumberOfFilterElements);  
  121.         this.bitset = filterData;  
  122.         this.numberOfAddedElements = actualNumberOfFilterElements;  
  123.     }  
  124.   
  125.     /** 
  126.      * Generates a digest based on the contents of a String. 
  127.      * 
  128.      * @param val specifies the input data. 
  129.      * @param charset specifies the encoding of the input data. 
  130.      * @return digest as long. 
  131.      */  
  132.     public static int createHash(String val, Charset charset) {  
  133.         return createHash(val.getBytes(charset));  
  134.     }  
  135.   
  136.     /** 
  137.      * Generates a digest based on the contents of a String. 
  138.      * 
  139.      * @param val specifies the input data. The encoding is expected to be UTF-8. 
  140.      * @return digest as long. 
  141.      */  
  142.     public static int createHash(String val) {  
  143.         return createHash(val, charset);  
  144.     }  
  145.   
  146.     /** 
  147.      * Generates a digest based on the contents of an array of bytes. 
  148.      * 
  149.      * @param data specifies input data. 
  150.      * @return digest as long. 
  151.      */  
  152.     public static int createHash(byte[] data) {  
  153.         return createHashes(data, 1)[0];  
  154.     }  
  155.   
  156.     /** 
  157.      * Generates digests based on the contents of an array of bytes and splits the result into  
  158.      * 4-byte int's and store them in an array. The 
  159.      * digest function is called until the required number of int's are produced. For each call to 
  160.      * digest a salt 
  161.      * is prepended to the data. The salt is increased by 1 for each call. 
  162.      * 
  163.      * @param data specifies input data. 
  164.      * @param hashes number of hashes/int's to produce. 
  165.      * @return array of int-sized hashes 
  166.      */  
  167.     public static int[] createHashes(byte[] data, int hashes) {  
  168.         int[] result = new int[hashes];  
  169.   
  170.         int k = 0;  
  171.         byte salt = 0;  
  172.         while (k < hashes) {  
  173.             byte[] digest;  
  174.             synchronized (digestFunction) {  
  175.                 digestFunction.update(salt);  
  176.                 salt++;  
  177.                 digest = digestFunction.digest(data);                  
  178.             }  
  179.           
  180.             for (int i = 0; i < digest.length/4 && k < hashes; i++) {  
  181.                 int h = 0;  
  182.                 for (int j = (i*4); j < (i*4)+4; j++) {  
  183.                     h <<= 8;  
  184.                     h |= ((int) digest[j]) & 0xFF;  
  185.                 }  
  186.                 result[k] = h;  
  187.                 k++;  
  188.             }  
  189.         }  
  190.         return result;  
  191.     }  
  192.   
  193.     /** 
  194.      * Compares the contents of two instances to see if they are equal. 
  195.      * 
  196.      * @param obj is the object to compare to. 
  197.      * @return True if the contents of the objects are equal. 
  198.      */  
  199.     @Override  
  200.     public boolean equals(Object obj) {  
  201.         if (obj == null) {  
  202.             return false;  
  203.         }  
  204.         if (getClass() != obj.getClass()) {  
  205.             return false;  
  206.         }  
  207.         final BloomFilter<E> other = (BloomFilter<E>) obj;          
  208.         if (this.expectedNumberOfFilterElements != other.expectedNumberOfFilterElements) {  
  209.             return false;  
  210.         }  
  211.         if (this.k != other.k) {  
  212.             return false;  
  213.         }  
  214.         if (this.bitSetSize != other.bitSetSize) {  
  215.             return false;  
  216.         }  
  217.         if (this.bitset != other.bitset && (this.bitset == null || !this.bitset.equals(other.bitset))) {  
  218.             return false;  
  219.         }  
  220.         return true;  
  221.     }  
  222.   
  223.     /** 
  224.      * Calculates a hash code for this class. 
  225.      * @return hash code representing the contents of an instance of this class. 
  226.      */  
  227.     @Override  
  228.     public int hashCode() {  
  229.         int hash = 7;  
  230.         hash = 61 * hash + (this.bitset != null ? this.bitset.hashCode() : 0);  
  231.         hash = 61 * hash + this.expectedNumberOfFilterElements;  
  232.         hash = 61 * hash + this.bitSetSize;  
  233.         hash = 61 * hash + this.k;  
  234.         return hash;  
  235.     }  
  236.   
  237.   
  238.     /** 
  239.      * Calculates the expected probability of false positives based on 
  240.      * the number of expected filter elements and the size of the Bloom filter. 
  241.      * <br /><br /> 
  242.      * The value returned by this method is the <i>expected</i> rate of false 
  243.      * positives, assuming the number of inserted elements equals the number of 
  244.      * expected elements. If the number of elements in the Bloom filter is less 
  245.      * than the expected value, the true probability of false positives will be lower. 
  246.      * 
  247.      * @return expected probability of false positives. 
  248.      */  
  249.     public double expectedFalsePositiveProbability() {  
  250.         return getFalsePositiveProbability(expectedNumberOfFilterElements);  
  251.     }  
  252.   
  253.     /** 
  254.      * Calculate the probability of a false positive given the specified 
  255.      * number of inserted elements. 
  256.      * 
  257.      * @param numberOfElements number of inserted elements. 
  258.      * @return probability of a false positive. 
  259.      */  
  260.     public double getFalsePositiveProbability(double numberOfElements) {  
  261.         // (1 - e^(-k * n / m)) ^ k  
  262.         return Math.pow((1 - Math.exp(-k * (double) numberOfElements  
  263.                         / (double) bitSetSize)), k);  
  264.   
  265.     }  
  266.   
  267.     /** 
  268.      * Get the current probability of a false positive. The probability is calculated from 
  269.      * the size of the Bloom filter and the current number of elements added to it. 
  270.      * 
  271.      * @return probability of false positives. 
  272.      */  
  273.     public double getFalsePositiveProbability() {  
  274.         return getFalsePositiveProbability(numberOfAddedElements);  
  275.     }  
  276.   
  277.   
  278.     /** 
  279.      * Returns the value chosen for K.<br /> 
  280.      * <br /> 
  281.      * K is the optimal number of hash functions based on the size 
  282.      * of the Bloom filter and the expected number of inserted elements. 
  283.      * 
  284.      * @return optimal k. 
  285.      */  
  286.     public int getK() {  
  287.         return k;  
  288.     }  
  289.   
  290.     /** 
  291.      * Sets all bits to false in the Bloom filter. 
  292.      */  
  293.     public void clear() {  
  294.         bitset.clear();  
  295.         numberOfAddedElements = 0;  
  296.     }  
  297.   
  298.     /** 
  299.      * Adds an object to the Bloom filter. The output from the object's 
  300.      * toString() method is used as input to the hash functions. 
  301.      * 
  302.      * @param element is an element to register in the Bloom filter. 
  303.      */  
  304.     public void add(E element) {  
  305.        add(element.toString().getBytes(charset));  
  306.     }  
  307.   
  308.     /** 
  309.      * Adds an array of bytes to the Bloom filter. 
  310.      * 
  311.      * @param bytes array of bytes to add to the Bloom filter. 
  312.      */  
  313.     public void add(byte[] bytes) {  
  314.        int[] hashes = createHashes(bytes, k);  
  315.        for (int hash : hashes)  
  316.            bitset.set(Math.abs(hash % bitSetSize), true);  
  317.        numberOfAddedElements ++;  
  318.     }  
  319.   
  320.     /** 
  321.      * Adds all elements from a Collection to the Bloom filter. 
  322.      * @param c Collection of elements. 
  323.      */  
  324.     public void addAll(Collection<? extends E> c) {  
  325.         for (E element : c)  
  326.             add(element);  
  327.     }  
  328.           
  329.     /** 
  330.      * Returns true if the element could have been inserted into the Bloom filter. 
  331.      * Use getFalsePositiveProbability() to calculate the probability of this 
  332.      * being correct. 
  333.      * 
  334.      * @param element element to check. 
  335.      * @return true if the element could have been inserted into the Bloom filter. 
  336.      */  
  337.     public boolean contains(E element) {  
  338.         return contains(element.toString().getBytes(charset));  
  339.     }  
  340.   
  341.     /** 
  342.      * Returns true if the array of bytes could have been inserted into the Bloom filter. 
  343.      * Use getFalsePositiveProbability() to calculate the probability of this 
  344.      * being correct. 
  345.      * 
  346.      * @param bytes array of bytes to check. 
  347.      * @return true if the array could have been inserted into the Bloom filter. 
  348.      */  
  349.     public boolean contains(byte[] bytes) {  
  350.         int[] hashes = createHashes(bytes, k);  
  351.         for (int hash : hashes) {  
  352.             if (!bitset.get(Math.abs(hash % bitSetSize))) {  
  353.                 return false;  
  354.             }  
  355.         }  
  356.         return true;  
  357.     }  
  358.   
  359.     /** 
  360.      * Returns true if all the elements of a Collection could have been inserted 
  361.      * into the Bloom filter. Use getFalsePositiveProbability() to calculate the 
  362.      * probability of this being correct. 
  363.      * @param c elements to check. 
  364.      * @return true if all the elements in c could have been inserted into the Bloom filter. 
  365.      */  
  366.     public boolean containsAll(Collection<? extends E> c) {  
  367.         for (E element : c)  
  368.             if (!contains(element))  
  369.                 return false;  
  370.         return true;  
  371.     }  
  372.   
  373.     /** 
  374.      * Read a single bit from the Bloom filter. 
  375.      * @param bit the bit to read. 
  376.      * @return true if the bit is set, false if it is not. 
  377.      */  
  378.     public boolean getBit(int bit) {  
  379.         return bitset.get(bit);  
  380.     }  
  381.   
  382.     /** 
  383.      * Set a single bit in the Bloom filter. 
  384.      * @param bit is the bit to set. 
  385.      * @param value If true, the bit is set. If false, the bit is cleared. 
  386.      */  
  387.     public void setBit(int bit, boolean value) {  
  388.         bitset.set(bit, value);  
  389.     }  
  390.   
  391.     /** 
  392.      * Return the bit set used to store the Bloom filter. 
  393.      * @return bit set representing the Bloom filter. 
  394.      */  
  395.     public BitSet getBitSet() {  
  396.         return bitset;  
  397.     }  
  398.   
  399.     /** 
  400.      * Returns the number of bits in the Bloom filter. Use count() to retrieve 
  401.      * the number of inserted elements. 
  402.      * 
  403.      * @return the size of the bitset used by the Bloom filter. 
  404.      */  
  405.     public int size() {  
  406.         return this.bitSetSize;  
  407.     }  
  408.   
  409.     /** 
  410.      * Returns the number of elements added to the Bloom filter after it 
  411.      * was constructed or after clear() was called. 
  412.      * 
  413.      * @return number of elements added to the Bloom filter. 
  414.      */  
  415.     public int count() {  
  416.         return this.numberOfAddedElements;  
  417.     }  
  418.   
  419.     /** 
  420.      * Returns the expected number of elements to be inserted into the filter. 
  421.      * This value is the same value as the one passed to the constructor. 
  422.      * 
  423.      * @return expected number of elements. 
  424.      */  
  425.     public int getExpectedNumberOfElements() {  
  426.         return expectedNumberOfFilterElements;  
  427.     }  
  428.   
  429.     /** 
  430.      * Get expected number of bits per element when the Bloom filter is full. This value is set by the constructor 
  431.      * when the Bloom filter is created. See also getBitsPerElement(). 
  432.      * 
  433.      * @return expected number of bits per element. 
  434.      */  
  435.     public double getExpectedBitsPerElement() {  
  436.         return this.bitsPerElement;  
  437.     }  
  438.   
  439.     /** 
  440.      * Get actual number of bits per element based on the number of elements that have currently been inserted and the length 
  441.      * of the Bloom filter. See also getExpectedBitsPerElement(). 
  442.      * 
  443.      * @return number of bits per element. 
  444.      */  
  445.     public double getBitsPerElement() {  
  446.         return this.bitSetSize / (double)numberOfAddedElements;  
  447.     }  
  448. }  

   实际应用中,重要的往往是m,n,k的选择以及hash函数的设定。在Oracle 11g中就采用了BloomFilter来实现分布式数据库中两表的join操作;在网络中应用则更加广泛,例如分布式web代理Squid;此外还有拼 写检查、海量数据处理等领域中都能搞看到它的身影。

分享到:
评论

相关推荐

    一种新的基于Bloom filter数据结构的数据消冗算法.pdf

    "一种新的基于Bloom filter数据结构的数据消冗算法" 本文提出了一种新的基于Bloom filter数据结构的数据消冗算法,该算法首先利用完全文件检测算法对数据进行检验匹配,通过的数据块再利用CDC分块检测算法进行...

    Bloom Filter概念和原理

    Bloom Filter是一种高效的数据结构,主要用于快速查询一个元素是否存在于一个集合中。它通过牺牲一定的精确度来换取存储空间的极大节省。Bloom Filter的核心思想是使用一个位数组以及多个独立的哈希函数来表示一个...

    带bloom filter 的c网络爬虫

    - **bloomfilter.h**:这是一个头文件,很可能包含了Bloom Filter的数据结构定义和相关操作函数的声明。在C语言中,头文件通常用于提供接口给其他源文件使用,这里可能是为了在spider.c中方便地调用Bloom Filter的...

    bloom filter

    Bloom Filter是一种高效的数据结构,主要用于近似地判断一个元素是否在一个集合中。它的主要特点是空间效率高,但允许存在一定的误报率(即可能会错误地报告一个元素属于某个集合,这种错误被称为“假正例”)。...

    Python-bloomfilter过滤器

    **Python-bloomfilter过滤器详解** Bloom Filter是一种空间效率极高的概率型数据结构,用于判断一个元素是否在一个集合中。在Python开发中,尤其是在处理大量数据时,Bloom Filter可以有效地节省内存空间,尤其适用...

    leveldb中bloomfilter的优化.pdf

    - **构建:** 对于每个SSTable,构建一个小的Bloom Filter,并将其与SSTable的元数据一起存储。 - **调整策略:** 根据访问频率动态调整Bloom Filter的激活状态。具体来说,对于频繁访问的SSTable,其Bloom Filter将被...

    BloomFilter及其应用综述

    Bloom filter是一个简明的空间效率极高的随机的数据结构。用Bloom filter 表示 cache 内容 ,可以高效地实现cache 协作。本文对BloomFilter及其改进型进行了综述性分析,探讨了它的实用性。

    java-bloomfilter

    布隆过滤器(Bloom Filter)是计算机科学中一种高效的空间节省的数据结构,主要用于判断一个元素是否可能存在于一个大规模集合中。它由伯特·布隆(Burton Howard Bloom)在1970年提出,因此得名。布隆过滤器在处理...

    多字段矩阵型bloomfilter(支持砍维度)

    Bloom Filter是一种空间效率极高的概率型数据结构,用于判断一个元素是否可能在一个集合中。在传统的Bloom Filter中,它通常处理单一的关键字,而在“多字段矩阵型Bloom Filter”中,这一概念被扩展到了支持多个字段...

    基于Bloom Filter的海量数据分布式快速匹配算法研究.pdf

    2. Bloom Filter技术:Bloom Filter是一种空间效率很高的随机数据结构,它使用位数组来简洁地表示一个集合,并且能够快速判断一个元素是否属于这个集合。Bloom Filter的引入是为了高效利用数据空间,在海量数据匹配...

    BloomFilter算法

    Bloom Filter是一种空间效率极高的概率型数据结构,用于判断一个元素是否可能在一个集合中。由Burton Howard Bloom在1970年提出,它的主要特点是能够在牺牲一定的判断准确性(可能存在误判)的前提下,极大地节省...

    Java版本的BloomFilter (布隆过滤器)

    **布隆过滤器(Bloom Filter)**是一种空间效率极高的概率型数据结构,用于测试一个元素是否在一个集合中。由Burton Howard Bloom在1970年提出,主要用于节省存储空间,尤其在大数据场景下,它能有效地解决大规模...

    Go-Go中的CuckooFilter实现比BloomFilter更好

    在Go编程语言中,Bloom Filter和Cuckoo Filter是两种流行的数据结构,用于空间效率高的近似存在检查。本篇文章将深入探讨Cuckoo Filter如何在某些情况下优于Bloom Filter,以及Go语言中实现Cuckoo Filter的细节。 ...

    Go-一个CuckooFilter的Go库BloomFilter的替代物

    本文将深入探讨标题提及的"Go-一个CuckooFilter的Go库BloomFilter的替代物",以及其背后的CuckooFilter数据结构和它如何成为BloomFilter的一种优化方案。 首先,Bloom Filter是一种空间效率极高的概率数据结构,...

    bloom filter 相关论文资料

    布隆过滤器(Bloom Filter)是一种空间效率极高的概率数据结构,用于判断一个元素是否可能在一个集合中。它由布伦南·布隆在1970年提出,最初是为了解决查找问题中的空间效率问题。这篇论文资料集合涵盖了布隆过滤器...

    Bloom Filter 在数据库系统的应用

    Bloom Filter 是一种基于哈希、概率性的数据结构,用于空间高效的集合表示。它可以快速判断一个元素是否在集合中,但可能存在假阳性(False Positive),却从不出现假阴性(False Negative)。 Bloom Filter 的...

    bloom filter布隆过滤器学习资料大全

    布隆过滤器(Bloom Filter)是一种空间效率极高的概率型数据结构,用于判断一个元素是否可能在一个集合中。在大数据处理、缓存系统、分布式存储等领域有着广泛的应用。这个压缩包文件“bloom filter布隆过滤器学习...

    bloom filter(C#版自制布隆过滤器)

    布隆过滤器是一种空间效率极高的概率型数据结构,用于判断一个元素是否可能在一个集合中。它是由 Burton Howard Bloom 在1970年提出的,主要应用于大数据存储和检索,尤其在数据库、缓存系统和网络搜索等领域有广泛...

Global site tag (gtag.js) - Google Analytics