B-Trees
B-tree implementation in C++ to index documents based on numerical id's and title strings.
Public Attributes | List of all members
BTree< T, M, BlockSize >::FileHeader Struct Reference

File header data for BTree indexes. More...

Public Attributes

long rootAddress
 
unsigned int blockCount
 

Detailed Description

template<typename T, std::size_t M, unsigned int BlockSize = BLOCK_SIZE>
struct BTree< T, M, BlockSize >::FileHeader

File header data for BTree indexes.

Member Data Documentation

template<typename T, std::size_t M, unsigned int BlockSize = BLOCK_SIZE>
unsigned int BTree< T, M, BlockSize >::FileHeader::blockCount
template<typename T, std::size_t M, unsigned int BlockSize = BLOCK_SIZE>
long BTree< T, M, BlockSize >::FileHeader::rootAddress

The documentation for this struct was generated from the following file: