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 codes from the following jar file, and put them in an Eclipse project:

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

Test your new method in a BST main, or in BSTDriver.

Binary tree visualization

Sample source