|
B-Trees
B-tree implementation in C++ to index documents based on numerical id's and title strings.
|
Helper struct to store secondary indexes. More...
Public Member Functions | |
| bool | operator< (const TitleIndex &that) const |
| Less-than comparator so that TitleIndex can be used in BTree. More... | |
Public Attributes | |
| char | title [TITLE_CHAR_MAX] |
| Entry title. More... | |
| long | offset |
| Entry offset in the hashfile. More... | |
Helper struct to store secondary indexes.
|
inline |
Less-than comparator so that TitleIndex can be used in BTree.
| long TitleIndex::offset |
Entry offset in the hashfile.
| char TitleIndex::title[TITLE_CHAR_MAX] |
Entry title.
1.8.11