public void | flush() Flushes this node to disk
Node page structure:
1 * byte --> 1 = leaf, 2 = non leaf
1 * long --> parent offset
entries len * 40 --> the entries
each entry is as follow
4 * double --> the bounding box (x1, x2, y1, y2)
1 * long --> the pointer (-1 if leaf)
Data pages are immediatly after leaf Node pages. |