中文
相关论文

相关论文: Space Efficient Multi-Dimensional Range Reporting

200 篇论文

In the semialgebraic range searching problem, we are to preprocess $n$ points in $\mathbb{R}^d$ s.t. for any query range from a family of constant complexity semialgebraic sets, all the points intersecting the range can be reported or…

计算几何 · 计算机科学 2021-05-18 Peyman Afshani , Pingan Cheng

In this work, we study the limits of compressed data structures, i.e., structures that support various queries on an input text $T\in\Sigma^n$ using space proportional to the size of $T$ in compressed form. Nearly all fundamental queries…

数据结构与算法 · 计算机科学 2025-10-23 Dominik Kempa , Tomasz Kociumaka

We present a version of the sieve of Eratosthenes that can factor all integers $\le x$ in $O(x \log\log x)$ arithmetic operations using at most $O(\sqrt{x}/\log\log x)$ bits of space. This is an improved space bound under the condition that…

数据结构与算法 · 计算机科学 2024-11-13 Samuel Hartman , Jonathan P. Sorenson

We present a dynamic self-balancing octree data structure that enables efficient neighborhood maintenance in evolving metric spaces, a key challenge in modern machine learning systems. Many learning and generative models operate as…

机器学习 · 计算机科学 2025-04-28 Aditya S Ellendula , Chandrajit Bajaj

The retrieval problem is the problem of associating data with keys in a set. Formally, the data structure must store a function f: U ->{0,1}^r that has specified values on the elements of a given set S, a subset of U, |S|=n, but may have…

数据结构与算法 · 计算机科学 2008-03-27 Martin Dietzfelbinger , Rasmus Pagh

In this paper, we first consider the subpath convex hull query problem: Given a simple path $\pi$ of $n$ vertices, preprocess it so that the convex hull of any query subpath of $\pi$ can be quickly obtained. Previously, Guibas, Hershberger,…

计算几何 · 计算机科学 2020-02-26 Haitao Wang

Chan [JACM, 2010] gave a data structure for maintaining the convex hull of a dynamic set of 3D points under insertions and deletions, supporting extreme-point queries. Subsequent refinements by Kaplan, Mulzer, Roditty, Seiferth, and Sharir…

计算几何 · 计算机科学 2026-02-24 Haitao Wang

We present a framework for designing efficient distributed data structures for multi-dimensional data. Our structures, which we call skip-webs, extend and improve previous randomized distributed data structures, including skipnets and skip…

分布式、并行与集群计算 · 计算机科学 2007-05-23 Lars Arge , David Eppstein , Michael T. Goodrich

We improve the running times of $O(1)$-approximation algorithms for the set cover problem in geometric settings, specifically, covering points by disks in the plane, or covering points by halfspaces in three dimensions. In the unweighted…

计算几何 · 计算机科学 2020-03-31 Timothy M. Chan , Qizheng He

Let $\kappa(s,t)$ denote the maximum number of internally disjoint $st$-paths in an undirected graph $G$. We consider designing a compact data structure that answers $k$-bounded node connectivity queries: given $s,t \in V$ return…

数据结构与算法 · 计算机科学 2023-06-27 Zeev Nutov

An optimal index solving top-k document retrieval [Navarro and Nekrich, SODA12] takes O(m + k) time for a pattern of length m, but its space is at least 80n bytes for a collection of n symbols. We reduce it to 1.5n to 3n bytes, with…

数据结构与算法 · 计算机科学 2012-11-26 Roberto Konow , Gonzalo Navarro

We describe a data structure, called a priority range tree, which accommodates fast orthogonal range reporting queries on prioritized points. Let $S$ be a set of $n$ points in the plane, where each point $p$ in $S$ is assigned a weight…

计算几何 · 计算机科学 2010-09-21 Michael T. Goodrich , Darren Strash

Distance oracles are data structures that provide fast (possibly approximate) answers to shortest-path and distance queries in graphs. The tradeoff between the space requirements and the query time of distance oracles is of particular…

数据结构与算法 · 计算机科学 2011-11-01 Christian Sommer

Big data, encompassing extensive datasets, has seen rapid expansion, notably with a considerable portion being textual data, including strings and texts. Simple compression methods and standard data structures prove inadequate for…

数据结构与算法 · 计算机科学 2024-11-11 Takaaki Nishimoto , Yasuo Tabei

A classical problem in computational geometry and graph algorithms is: given a dynamic set S of geometric shapes in the plane, efficiently maintain the connectivity of the intersection graph of S. Previous papers studied the setting where,…

计算几何 · 计算机科学 2024-07-01 Ivor van der Hoog , André Nusser , Eva Rotenberg , Frank Staals

Let $A$ be a static array storing $n$ elements from a totally ordered set. We present a data structure of optimal size at most $n\log_2(3+2\sqrt{2})+o(n)$ bits that allows us to answer the following queries on $A$ in constant time, without…

数据结构与算法 · 计算机科学 2011-02-03 Johannes Fischer

A central task in string processing is text indexing, where the goal is to preprocess a text (a string of length $n$) into an efficient index (a data structure) supporting queries about the text. Cole, Gottlieb, and Lewenstein (STOC 2004)…

数据结构与算法 · 计算机科学 2025-10-31 Tomasz Kociumaka , Jakub Radoszewski

We prove that given a discrete space with $n$ points which is either embedded in a system of $k$ trees, or the Cartesian product of $k$ trees, we can compute all eccentricities in ${\cal O}(2^{{\cal O}(k\log{k})}(N+n)^{1+o(1)})$ time, where…

数据结构与算法 · 计算机科学 2020-10-30 Guillaume Ducoffe

We consider the popular $k$-means problem in $d$-dimensional Euclidean space. Recently Friggstad, Rezapour, Salavatipour [FOCS'16] and Cohen-Addad, Klein, Mathieu [FOCS'16] showed that the standard local search algorithm yields a…

数据结构与算法 · 计算机科学 2017-08-30 Vincent Cohen-Addad

Let $\mathcal{P}$ be the surface of a convex polyhedron with $n$ vertices. We consider the two-point shortest path query problem for $\mathcal{P}$: Constructing a data structure so that given any two query points $s$ and $t$ on…

计算几何 · 计算机科学 2025-12-15 Haitao Wang