Skip to content

Single-header C++11 implementation of the Cache Sensitive Search tree (CSS-tree)

License

Notifications You must be signed in to change notification settings

gvinciguerra/CSS-tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSS-tree

Build Status

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.

Minimal example

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()

Running tests

git clone https://github.com/gvinciguerra/CSS-tree.git
cd CSS-tree
cmake . -DCMAKE_BUILD_TYPE=Release
make
./test/tests

License

This project is licensed under the terms of the MIT License.

About

Single-header C++11 implementation of the Cache Sensitive Search tree (CSS-tree)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published