CS200 Lab 7, BST delete

Overview

In this lab you will extend the given BST class to include deleteItem.

See the tree lecture nodes.

Take the following codes from the progress webpage, and put them in an Eclipse project:

Add a new method public void deleteItem(String key) to delete the node containing the key item.

Test your new method in BST main.