Lazy Search Trees
Abstract
We introduce the lazy search tree data structure. The lazy search tree is a comparison-based data structure on the pointer machine that supports order-based operations such as rank, select, membership, predecessor, successor, minimum, and maximum while providing dynamic operations insert, delete, change-key, split, and merge. We analyze the performance of our data structure based on a partition of current elements into a set of gaps based on rank. A query falls into a particular gap and splits the gap into two new gaps at a rank associated with the query operation. If we define , our performance over a sequence of insertions and distinct queries is . We show is a lower bound. Effectively, we reduce the insertion time of binary search trees from to , where is the gap in which the inserted element falls. Over a sequence of insertions and queries, a time bound of holds; better bounds are possible when queries are non-uniformly distributed. As an extreme case of non-uniformity, if all queries are for the minimum element, the lazy search tree performs as a priority queue with time insert and decrease-key operations. The same data structure supports queries for any rank, interpolating between binary search trees and efficient priority queues. Lazy search trees can be implemented to operate mostly on arrays, requiring only pointers. Via direct reduction, our data structure also supports the efficient access theorems of the splay tree, providing a powerful data structure for non-uniform element access, both when the number of accesses is small and large.
Cite
@article{arxiv.2010.08840,
title = {Lazy Search Trees},
author = {Bryce Sandlund and Sebastian Wild},
journal= {arXiv preprint arXiv:2010.08840},
year = {2020}
}
Comments
Accepted for publication in FOCS 2020