Single-header C++11 implementation of the Cache Sensitive Search tree (CSS-tree) described in:
Rao, J., & Ross, K. A. (1998). Cache conscious indexing for decision-support in main memory.
std::vector<int32_t> data = {-3, 2, 4, 11, 35, 60};
CSSTree<64, int32_t> tree(data); // 64 is the block size of the tree in bytes
*tree.find(11); // == 11
tree.find(100); // == tree.end()
git clone https://github.com/gvinciguerra/CSS-tree.git
cd CSS-tree
cmake . -DCMAKE_BUILD_TYPE=Release
make
./test/tests
This project is licensed under the terms of the MIT License.