English

Multidimensional segment trees can do range updates in poly-logarithmic time

Data Structures and Algorithms 2020-12-08 v2

Abstract

Updating and querying on a range is a classical algorithmic problem with a multitude of applications. The Segment Tree data structure is particularly notable in handling the range query and update operations. A Segment Tree divides the range into disjoint segments and merges them together to perform range queries and range updates elegantly. Although this data structure is remarkably potent for 1-dimensional problems, it falls short in higher dimensions. Lazy Propagation enables the operations to be computed in O(logn)O(logn) time in a single dimension. However, the concept of lazy propagation could not be translated to higher-dimensional cases, which imposes a time complexity of O(nk1  logn)O(n^{k-1} \; logn) for operations on kk-dimensional data. In this work, we have made an attempt to emulate the idea of lazy propagation differently so that it can be applied for 2-dimensional cases. Moreover, the proposed modification should be capable of performing most general aggregate functions similar to the original Segment Tree, and can also be extended to even higher dimensions. Our proposed algorithm manages to perform range sum queries and updates in O(log2n)O(\log^2 n) time for a 2-dimensional problem, which becomes O(logdn)O(\log^d n) for a dd-dimensional situation.

Keywords

Cite

@article{arxiv.1811.01226,
  title  = {Multidimensional segment trees can do range updates in poly-logarithmic time},
  author = {Nabil Ibtehaz and M. Kaykobad and M. Sohel Rahman},
  journal= {arXiv preprint arXiv:1811.01226},
  year   = {2020}
}
R2 v1 2026-06-23T05:03:06.982Z