SimdQuickHeap: The QuickHeap Reconsidered
Abstract
Priority queues are data structures that maintain a dynamic collection of elements and allow inserting new elements and removing the smallest element. The most widely known and used priority queue is likely the implicit binary heap, even though it is has frequent cache misses and is hard to optimize using e.g. SIMD instructions. We introduce the SimdQuickHeap, a variant of the QuickHeap that was introduced by Navarro and Paredes in 2010. As suggested by the name, the data structure bears some similarity to QuickSort. We modify the data layout of the original QuickHeap to have all \emph{pivots} adjacent in memory, with elements between consecutive pivots stored in dedicated \emph{buckets}. This allows efficient SIMD implementations for both partitioning of buckets and scanning the list of pivots to find the bucket to append newly inserted elements to. The SimdQuickHeap has amortized expected complexity per operation, which improves to in non-degenerate cases, where is the number of words in a SIMD register. In this case, the I/O-complexity is amortized per push and per pop. In synthetic benchmarks, the SimdQuickHeap is up to twice as fast as the next-best competitor, including the non-comparison radix heap, and needs around comparisons and nanoseconds per pair of push and pop operations. On graph benchmarks with Dijkstra's shortest path algorithm and Jarnik-Prim's minimum spanning tree algorithm, the SimdQuickHeap is consistently the fastest.
Cite
@article{arxiv.2604.25681,
title = {SimdQuickHeap: The QuickHeap Reconsidered},
author = {Johannes Breitling and Ragnar Groot Koerkamp and Marvin Williams},
journal= {arXiv preprint arXiv:2604.25681},
year = {2026}
}
Comments
19 pages; 6 figures