B-Trees
B-tree implementation in C++ to index documents based on numerical id's and title strings.
|
Go to the source code of this file.
Classes | |
struct | Entry |
Article entry. More... | |
Macros | |
#define | TITLE_CHAR_MAX 300 |
Max title size in characters. More... | |
#define | AUTHORS_CHAR_MAX 1024 |
Max author name list size in total characters. More... | |
#define | TIMESTAMP_CHAR_MAX 20 |
Max timestamp size in characters. More... | |
#define | SNIPPET_CHAR_MAX 1024 |
Max snippet size in characters. More... | |
#define AUTHORS_CHAR_MAX 1024 |
Max author name list size in total characters.
#define SNIPPET_CHAR_MAX 1024 |
Max snippet size in characters.
#define TIMESTAMP_CHAR_MAX 20 |
Max timestamp size in characters.
#define TITLE_CHAR_MAX 300 |
Max title size in characters.