CS200 Lab 8, Generic BSTs

Overview

In this lab you will implement the given generic BST class.

See the advanced OO lecture nodes.

Take the following codes and put them in an Eclipse project:

Implement the methods
private BSTNode insertItem(BSTNode node, Symbol item) throws BSTException
and
private Symbol retrieveItem(BSTNode node, String key)>
to insert and retrieve symbols.

Test your methods using BSTDriver.