B-Trees
B-tree implementation in C++ to index documents based on numerical id's and title strings.
Public Member Functions | Public Attributes | List of all members
IdIndex Struct Reference

Helper struct to store primary indexes. More...

Public Member Functions

bool operator< (const IdIndex &that) const
 Less-than comparator so that IdIndex can be used in BTree. More...
 

Public Attributes

int id
 Entry id. More...
 
long offset
 Entry offset in the hashfile. More...
 

Detailed Description

Helper struct to store primary indexes.

Member Function Documentation

bool IdIndex::operator< ( const IdIndex that) const
inline

Less-than comparator so that IdIndex can be used in BTree.

Member Data Documentation

int IdIndex::id

Entry id.

long IdIndex::offset

Entry offset in the hashfile.


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