-
Cache-Oblivious Algorithms and Data Structures - Erik Demaine (One of the earliest papers in cache oblivious data structures and algorithms that introduces the cache oblivious model in detail and examines static and dynamic cache oblivious data structures built between 2000-2003)
-
Cache Oblivious B-Trees - Bender, Demaine, Farch-Colton (This paper presents two dynamic search trees attaining near-optimal performance on any hierarchical memory. One of the fundamental papers in the field where both search trees discussed match the optimal search bound of Θ(1+log (B+1)N) memory transfers)
-
Cache Oblivious Search Trees via Binary Trees of Small Height - Brodal, Fagerberg, Jacob (The data structure discussed in this paper works on the version of [2] but avoids the use of weight balanced B-trees, and can be implemented as just a single array of data elements, without the use of pointers. The structure also improves space utilization)
-
Cache Oblivious Algorithms - Frigo, Leiserson, Prokop, Ramachandran (Possibly the fundamental paper that proposed the cache oblivious model and using vEB as the base search tree in this model)
-
An Introduction to Bε-trees and Write-Optimization - Michael A. Bender, Martin Farach-Colton, William Jannen, Rob Johnson, Bradley C. Kuszmaul, Donald E. Porter, Jun Yuan, and Yang Zhan (Introduces B ε -tree, an example of a write-optimized data structure that can be used to organize on-disk storage for an application such as a database or file system. This article describes the B ε -tree, compares its asymptotic performance to B-trees and Log-Structured Merge trees (LSM-trees), and presents real-world performance measurements)
-
BetrFS: A Right-Optimized Write-Optimized File System - William Jannen, Jun Yuan et. al. (Introduces the Bε-tree File System, or BetrFS, (pronounced “better eff ess”) is the first in-kernel file system to use a write-optimized index. Write optimized indexes (WOIs) are promising building blocks for storage systems because of their potential to implement both microwrites and large scans efficiently)
-
BetrFS: A Right-Optimized Write-Optimized File System - a talk by Rob Johnson on BetrFS
-
Cache-Oblivious Streaming B-trees - Bender, Farach-Colton et al (A streaming B-tree is a dictionary that efficiently implements insertions and range queries. This paper presents two cache-oblivious streaming B-trees, the shuttle tree, and the cache-oblivious lookahead array (COLA))
-
B-epsilon-tree and cache-oblivious lookahead array: a comparative study of two write-optimised data structures - Yevhen Khavrona
-
Write-Optimized Data Structures - Michael Bender
-
Evaluation of a Cache-Oblivious Data Structure - Maks Verver
-
The Cost of Cache-Oblivious Searching - Bender, Brodal, Fagerberg et al
-
Cache-Oblivious Data Structures for Orthogonal Range Searching - Pankaj Agarwal, Lars Arge et al
-
Cache-oblivious planar orthogonal range searching and counting. - Lars Arge, Gerth Stlting Brodal, Rolf Fagerberg, and Morten Laustsen (We present the first cache-oblivious data structure for planar orthogonal range counting, and improve on previous results for cache-oblivious planar orthogonal range searching.Our range counting structure uses O(N log2 N) space and answers queries using O(logB N) memory transfers, where B is the block size of any memory level in a multilevel memory hierarchy)
-
A locality-preserving cache-oblivious dynamic dictionary - Bneder, Duan, Iacono, Wu
-
Concurrent Cache-Oblivious B-Trees - Bender, Fineman et al (This paper extends the cache-oblivious model to a parallel or distributed set- ting and present three concurrent CO B-trees)
-
External-Memory Search Trees with Fast Insertions - Jelani Nelson (MS Thesis)
-
Engineering a cache-oblivious sorting algorithm - Brodal, Fagerberg et al (This paper is an algorithmic engineering study of cache-oblivious sorting. We investigate by empirical methods a number of implementation issues and parameter choices for the cache-oblivious sorting algorithm Lazy Funnelsort and compare the final algorithm with Quicksort, the established standard for comparison-based sorting, as well as with recent cache-aware proposals)
-
Cache Oblivious Sorting - Brodal
-
Cache Oblivious Distribution Sweeping - Brodal, Fagerberg (This paper adapts the distribution sweeping method to the cache oblivious model. Distribution sweeping is the name used for a general approach for divide-and-conquer algorithms where the combination of solved subproblems can be viewed as a merging process of streams)
-
Simple and semi-dynamic structures for cache-oblivious planar orthogonal range searching - Lars Arge, Norbert Zeh (This paper develops improved cache-oblivious data structures for two- and three-sided planar orthogonal range searching)
-
Cache-Oblivious Representation of B-Tree Structures - Lukáš Ondráček, Ondřej Mička
-
Integrating Cache Oblivious Approach with Modern Processor Architecture: The Case of Floyd-Warshall Algorithm - Toshio Endo
-
BP-tree: Overcoming the Point-Range Operation Tradeo! for In-Memory B-trees by Helen Xu et al - a variant of the B-tree, that overcomes the decades-old point-range operation tradeo" in traditional B-trees.
-
Cache-Friendly Search Trees; or, In Which Everything Beats std::set by Jeffrey Barratt and Brian Zhang
Last active
December 26, 2024 09:12
-
-
Save debasishg/afed8c32c6c31976dec175e1984f08de to your computer and use it in GitHub Desktop.
Papers related to cache oblivious data structures
s/Strucutre/Structure/ in the first heading
fixed .. thanks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
s/Strucutre/Structure/ in the first heading