Hollow Heaps
Thomas Dueholm Hansen, Haim Kaplan, Robert E. Tarjan, Uri Zwick

TL;DR
Hollow heaps are a simple and efficient data structure that match Fibonacci heaps' amortized performance, using lazy deletion and a DAG to simplify implementation while maintaining optimal operation costs.
Contribution
The paper introduces hollow heaps, a novel heap structure combining lazy deletion and DAG representation to achieve Fibonacci heap efficiency with simpler implementation.
Findings
All operations except delete and delete-min are O(1) worst-case and amortized.
Delete and delete-min operations are O(log n) amortized.
Hollow heaps are simpler to implement than Fibonacci heaps.
Abstract
We introduce the hollow heap, a very simple data structure with the same amortized efficiency as the classical Fibonacci heap. All heap operations except delete and delete-min take time, worst case as well as amortized; delete and delete-min take amortized time on a heap of items. Hollow heaps are by far the simplest structure to achieve this. Hollow heaps combine two novel ideas: the use of lazy deletion and re-insertion to do decrease-key operations, and the use of a dag (directed acyclic graph) instead of a tree or set of trees to represent a heap. Lazy deletion produces hollow nodes (nodes without items), giving the data structure its name.
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsAlgorithms and Data Compression · Network Packet Processing and Optimization · semigroups and automata theory
