SimdQuickHeap: The QuickHeap Reconsidered
arXiv:2604.25681
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 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 pivots adjacent in memory, with elements between consecutive pivots stored in dedicated 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 to as fast as the monotone radix heap, the next-best competitor, and to as fast as the superscalar sample queue, the fastest comparison-based priority queue. The SimdQuickHeap needs around comparisons and nanoseconds per pair of push and pop operations. On graph benchmarks with Dijkstra's shortest path algorithm and JarnÃk-Prim's minimum spanning tree algorithm, the SimdQuickHeap is consistently the fastest.
Accepted to ESA 2026; 19 pages; 6 figures