Type IndexEntry

#include <bt.h>

IndexEntry is the abstraction for an entry in a B+ Tree index node. It contains two attributes, an integer key, and a page id.

struct IndexEntry {
    int key;
    PageID pid;
}