English

Array Layouts for Comparison-Based Searching

Data Structures and Algorithms 2017-03-16 v2

Abstract

We attempt to determine the best order and search algorithm to store nn comparable data items in an array, AA, of length nn so that we can, for any query value, xx, quickly find the smallest value in AA that is greater than or equal to xx. In particular, we consider the important case where there are many such queries to the same array, AA, which resides entirely in RAM. In addition to the obvious sorted order/binary search combination we consider the Eytzinger (BFS) layout normally used for heaps, an implicit B-tree layout that generalizes the Eytzinger layout, and the van Emde Boas layout commonly used in the cache-oblivious algorithms literature. After extensive testing and tuning on a wide variety of modern hardware, we arrive at the conclusion that, for small values of nn, sorted order, combined with a good implementation of binary search is best. For larger values of nn, we arrive at the surprising conclusion that the Eytzinger layout is usually the fastest. The latter conclusion is unexpected and goes counter to earlier experimental work by Brodal, Fagerberg, and Jacob (SODA~2003), who concluded that both the B-tree and van Emde Boas layouts were faster than the Eytzinger layout for large values of nn. Our fastest C++ implementations, when compiled, use conditional moves to avoid branch mispredictions and prefetching to reduce cache latency.

Keywords

Cite

@article{arxiv.1509.05053,
  title  = {Array Layouts for Comparison-Based Searching},
  author = {Paul-Virak Khuong and Pat Morin},
  journal= {arXiv preprint arXiv:1509.05053},
  year   = {2017}
}

Comments

46 pages; 24 figures; updated after reviewing by ACM JEA

R2 v1 2026-06-22T10:58:24.296Z