CS226 - Day 21 - Spring 2012 Finish Binary Search Tree implementation: version1 - recursively defined tree, too painful to write the delete method, this attempt was finally abandoned, posted as BSTbad.java version2 - uses inner BTNode class, allows for recursive updating of links when deleting and inserted, posted as BST.java