/TTTree

Primary LanguageJava

TTTree

a simple implementation of a 2 3 Tree in java
methods of interest of an instance of the tree:
add(int item) : adds a key to the tree
search(int item): returns true if the key exists in the tree
printToFile(PrintWriter out): prints the tree to the passed file.

To do: implement deletion and generalize the data held in the tree.