This method returns the largest element of a BST.
BST
largest = aBST$maximum()
maximum returns the largest element of the BST in question, or NULL if the BST is empty.
maximum
NULL
John Hughes