Uses of Class
edu.ksu.cis.viewer.BinaryTree

Uses of BinaryTree in edu.ksu.cis.viewer
 

Methods in edu.ksu.cis.viewer that return BinaryTree
 BinaryTree BinaryTree.getLeftChild()
          Returns the left-hand child of this tree.
 BinaryTree BinaryTree.getRightChild()
          Returns the right-hand child of this tree.
 

Constructors in edu.ksu.cis.viewer with parameters of type BinaryTree
BinaryTree(Node root, BinaryTree left, BinaryTree right)
          Constructs a BinaryTree with the given root and children.