|
B-Trees
B-tree implementation in C++ to index documents based on numerical id's and title strings.
|
Article entry. More...
#include <Entry.hpp>
Public Attributes | |
| bool | valid |
| True if the data is legit, false if the entry is being used only for padding within the file. More... | |
| int | id |
| Article identifier. More... | |
| char | title [TITLE_CHAR_MAX] |
| Article title. More... | |
| int | year |
| Publication year of the article. More... | |
| char | authors [AUTHORS_CHAR_MAX] |
| Article authors. More... | |
| int | citations |
| Times the article has been cited. More... | |
| char | updateTimestamp [TIMESTAMP_CHAR_MAX] |
| Last update timestamp. More... | |
| char | snippet [SNIPPET_CHAR_MAX] |
| Article snippet. More... | |
Article entry.
Basic file entry
| char Entry::authors[AUTHORS_CHAR_MAX] |
Article authors.
| int Entry::citations |
Times the article has been cited.
| int Entry::id |
Article identifier.
| char Entry::snippet[SNIPPET_CHAR_MAX] |
Article snippet.
| char Entry::title[TITLE_CHAR_MAX] |
Article title.
| char Entry::updateTimestamp[TIMESTAMP_CHAR_MAX] |
Last update timestamp.
| bool Entry::valid |
True if the data is legit, false if the entry is being used only for padding within the file.
| int Entry::year |
Publication year of the article.
1.8.11