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:

Implement method public void deleteItem(String key) to delete the node containing the key item, in BSTdel.java.

Test your new method using BSTdel main.