中文
相关论文

相关论文: Optimizing Cuckoo Filter for high burst tolerance,…

200 篇论文

A Bloom Filter is a probabilistic data structure designed to check, rapidly and memory-efficiently, whether an element is present in a set. It has been vastly used in various computing areas and several variants, allowing deletions, dynamic…

数据结构与算法 · 计算机科学 2023-06-13 Ana Rodrigues , Ariel Shtul , Carlos Baquero , Paulo Sérgio Almeida

Bloom Filter is an important probabilistic data structure to reduce memory consumption for membership filters. It is applied in diverse domains such as Computer Networking, Network Security and Privacy, IoT, Edge Computing, Cloud Computing,…

数据结构与算法 · 计算机科学 2021-09-09 Sabuzima Nayak , Ripon Patgiri

An important function in modern routers and switches is to perform a lookup for a key. Hash-based methods, and in particular cuckoo hash tables, are popular for such lookup operations, but for large structures stored in off-chip memory,…

数据结构与算法 · 计算机科学 2017-09-15 Salvatore Pontarelli , Pedro Reviriego , Michael Mitzenmacher

The membership problem asks to maintain a set $S\subseteq[u]$, supporting insertions and membership queries, i.e., testing if a given element is in the set. A data structure that computes exact answers is called a dictionary. When a (small)…

数据结构与算法 · 计算机科学 2020-04-28 Mingmou Liu , Yitong Yin , Huacheng Yu

Probabilistic membership filters support fast approximate membership queries with a controlled false-positive probability $\varepsilon$ and are widely used across storage, analytics, networking, and bioinformatics…

数据结构与算法 · 计算机科学 2026-02-04 Antoine Limasset

This paper introduces CuCoTrack, a cuckoo hash based data structure designed to efficiently implement connection tracking. The proposed scheme exploits the fact that queries always match one existing connection to compress the 5-tuple that…

数据结构与算法 · 计算机科学 2018-06-12 Pedro Reviriego , Salvatore Pontarelli , Gil Levy

Probabilistic membership filters are a type of data structure designed to quickly verify whether an element of a large data set belongs to a subset of the data. While false negatives are not possible, false positives are. Therefore, the…

数据结构与算法 · 计算机科学 2018-01-22 Chao Fang , Zheng Zhu , Helmut G. Katzgraber

Filters are fast, small and approximate set membership data structures. They are often used to filter out expensive accesses to a remote set S for negative queries (that is, a query x not in S). Filters have one-sided errors: on a negative…

数据结构与算法 · 计算机科学 2021-07-08 David J. Lee , Samuel McCauley , Shikha Singh , Max Stein

This paper presents new alternatives to the well-known Bloom filter data structure. The Bloom filter, a compact data structure supporting set insertion and membership queries, has found wide application in databases, storage systems, and…

Finding heavy hitters in databases and data streams is a fundamental problem with applications ranging from network monitoring to database query optimization, machine learning, and more. Approximation algorithms offer practical solutions,…

数据结构与算法 · 计算机科学 2025-11-24 Vinh Quang Ngo , Marina Papatriantafilou

Named data networking is one of the recommended {\color{red}architectures} for the future of the Internet. In this communication architecture, the content name is used instead of the IP address. To achieve this purpose, a new data structure…

网络与互联网体系结构 · 计算机科学 2023-08-08 Arman Mahmoudi , Mahmood Ahmadi

The Bloom filter (BF) is a space efficient randomized data structure particularly suitable to represent a set supporting approximate membership queries. BFs have been extensively used in many applications especially in networking due to…

数据结构与算法 · 计算机科学 2016-03-04 Laura Carrea , Alexei Vernitski , Martin Reed

In this paper, we present an algorithm that joins relational database tables efficiently in a distributed environment using Bloom filters of an optimal size. We propose not to use fixed-size bloom filters as in previous research, but to…

分布式、并行与集群计算 · 计算机科学 2017-06-13 Ophir Lojkine

Compared to other techniques, particle swarm optimization is more frequently utilized because of its ease of use and low variability. However, it is complicated to find the best possible solution in the search space in large-scale…

神经与进化计算 · 计算机科学 2024-03-19 Hamed Zibaei , Mohammad Saadi Mesgari

The performance of a dynamic dictionary is measured mainly by its update time, lookup time, and space consumption. In terms of update time and lookup time there are known constructions that guarantee constant-time operations in the worst…

数据结构与算法 · 计算机科学 2015-03-13 Yuriy Arbitman , Moni Naor , Gil Segev

Cuckoo hashing is a highly practical dynamic dictionary: it provides amortized constant insertion time, worst case constant deletion time and lookup time, and good memory utilization. However, with a noticeable probability during the…

数据结构与算法 · 计算机科学 2009-03-04 Yuriy Arbitman , Moni Naor , Gil Segev

A $d$-ary cuckoo hash table is an open-addressed hash table that stores each key $x$ in one of $d$ random positions $h_1(x), h_2(x), \ldots, h_d(x)$. In the offline setting, where all items are given and keys need only be matched to…

数据结构与算法 · 计算机科学 2025-01-07 William Kuszmaul , Michael Mitzenmacher

Cuckoo hashing is a common hashing technique, guaranteeing constant-time lookups in the worst case. Adding a stash was proposed by Kirsch, Mitzenmacher, and Wieder at SICOMP 2010, as a way to reduce the probability of failure (i.e., the…

数据结构与算法 · 计算机科学 2023-01-03 Brice Minaud , Charalampos Papamanthou

Fuzzy clustering has become a widely used data mining technique and plays an important role in grouping, traversing and selectively using data for user specified applications. The deterministic Fuzzy C-Means (FCM) algorithm may result in…

神经与进化计算 · 计算机科学 2018-10-23 Saptarshi Sengupta , Sanchita Basak , Richard Alan Peters

Bloom Filter is extensively deployed data structure in various applications and research domain since its inception. Bloom Filter is able to reduce the space consumption in an order of magnitude. Thus, Bloom Filter is used to keep…

数据结构与算法 · 计算机科学 2019-03-18 Ripon Patgiri , Sabuzima Nayak , Samir Kumar Borgohain