English

Improved Time and Space Bounds for Dynamic Range Mode

Data Structures and Algorithms 2018-07-12 v1

Abstract

Given an array A of nn elements, we wish to support queries for the most frequent and least frequent element in a subrange [l,r][l, r] of AA. We also wish to support updates that change a particular element at index ii or insert/ delete an element at index ii. For the range mode problem, our data structure supports all operations in O(n2/3)O(n^{2/3}) deterministic time using only O(n)O(n) space. This improves two results by Chan et al. \cite{C14}: a linear space data structure supporting update and query operations in O~(n3/4)\tilde{O}(n^{3/4}) time and an O(n4/3)O(n^{4/3}) space data structure supporting update and query operations in O~(n2/3)\tilde{O}(n^{2/3}) time. For the range least frequent problem, we address two variations. In the first, we are allowed to answer with an element of AA that may not appear in the query range, and in the second, the returned element must be present in the query range. For the first variation, we develop a data structure that supports queries in O~(n2/3)\tilde{O}(n^{2/3}) time, updates in O(n2/3)O(n^{2/3}) time, and occupies O(n)O(n) space. For the second variation, we develop a Monte Carlo data structure that supports queries in O(n2/3)O(n^{2/3}) time, updates in O~(n2/3)\tilde{O}(n^{2/3}) time, and occupies O~(n)\tilde{O}(n) space, but requires that updates are made independently of the results of previous queries. The Monte Carlo data structure is also capable of answering kk-frequency queries; that is, the problem of finding an element of given frequency in the specified query range. Previously, no dynamic data structures were known for least frequent element or kk-frequency queries.

Keywords

Cite

@article{arxiv.1807.03827,
  title  = {Improved Time and Space Bounds for Dynamic Range Mode},
  author = {Hicham El-Zein and Meng He and J. Ian Munro and Bryce Sandlund},
  journal= {arXiv preprint arXiv:1807.03827},
  year   = {2018}
}
R2 v1 2026-06-23T02:56:56.274Z