#include <bt.h>
LeafEntry is the abstraction for an entry in a B+ Tree leaf node. It contains two attributes, an integer key, and a record ID.
struct LeafEntry { int key; RecordID rid; }