English

Partition-based Simple Heaps

Data Structures and Algorithms 2026-03-03 v1

Abstract

We introduce a new family of priority-queue data structures: partition-based simple heaps. The structures consist of O(logn)O(\log n) doubly-linked lists; order is enforced among data in different lists, but the individual lists are unordered. Our structures have amortized O(logn)O(\log n) time extract-min and amortized O(loglogn)O(\log \log n) time insert and decrease-key. The structures require nothing beyond binary search over O(logn)O(\log n) elements, as well as binary partitions and concatenations of linked lists in natural ways as the linked lists get too big or small. We present three different ways that these lists can be maintained in order to obtain the stated amortized running times.

Keywords

Cite

@article{arxiv.2603.01206,
  title  = {Partition-based Simple Heaps},
  author = {Gerth Stølting Brodal and John Iacono and Casper Moldrup Rysgaard and Sebastian Wild},
  journal= {arXiv preprint arXiv:2603.01206},
  year   = {2026}
}

Comments

LATIN 2026