共有 0 个贴子
没有任何数据可供显示
开源项目社区 | 当前位置 : |
|
www.trustie.net/open_source_projects | 主页 > 开源项目社区 > C++ B+ Tree Implementation |
C++ B+ Tree Implementation
|
3 | 0 | 0 |
贡献者 | 讨论 | 代码提交 |
Template based B+ Tree is a simple and yet very efficient template based B+ Tree implementation which supports different types of storage. It is implemented in C++, and can be used with any type of data. To change storage type (e.g. from file based to memory based), all you need is to change a template argument of the BTreeAlgorithms class. Either the standard search method or a customized search method can be used.