Uses of Class
edu.toronto.cs.binarytree.BTNode

Packages that use BTNode
edu.toronto.cs.binarytree   
 

Uses of BTNode in edu.toronto.cs.binarytree
 

Fields in edu.toronto.cs.binarytree declared as BTNode
protected  BTNode BTNode.left
           
protected  BTNode BTNode.right
           
 

Methods in edu.toronto.cs.binarytree that return BTNode
 BTNode BTNode.getLeft()
          Retrieves the left child of the BTNode.
 BTNode BTNode.getRight()
          Retrieves the right child of the BTNode.
 

Methods in edu.toronto.cs.binarytree with parameters of type BTNode
 void BTNode.setLeft(BTNode l)
          Changes the left child of the BTNode.
 void BTNode.setRight(BTNode r)
          Changes the right child of the BTNode.
 

Constructors in edu.toronto.cs.binarytree with parameters of type BTNode
BTNode(java.lang.Object d, BTNode l, BTNode r)
          Constructs a new BTNode with given data as well as left and right children.