B+ Tree data structure is being used in modern database management systems. In this repository, you can find a B+ Tree implementation with search
, insert
, and print
functionalities and a graphical user interface for the B+ Tree.
javac *.java
java CengBookRunner <order> shuf_input.txt <enable-gui>
order
: Order of the B+ Tree, at leastorder
and at most2*order
amount of keys fit in a node (except the root node,1 <= n <= 2*order
holds for root node)enable-gui
:True
if you want to enable the GUI, else,False