Package asd_library.tree.bstree

Interface Summary
BSTree_adt The abstract data type of a Binary Search tree.
 

Class Summary
BSTNode Basic node stored in a binary search tree.
BSTree The class BSTree implements a binary tree with the following property: for each node n, every left-subtree value is less then the key value v stored in n and every right-subtree value is greater then v.
BSTtreeDemo Test Class of BSTree
ConsoleReader This class reads strings and numbers from a generic input stream.