Uses of Class
baseCode.dataStructure.tree.BinaryTreeNode

Packages that use BinaryTreeNode
baseCode.dataStructure.tree   
 

Uses of BinaryTreeNode in baseCode.dataStructure.tree
 

Methods in baseCode.dataStructure.tree that return BinaryTreeNode
 BinaryTreeNode BinaryTree.getRoot()
           
 BinaryTreeNode BinaryTree.getLeft()
           
 BinaryTreeNode BinaryTree.getRight()
           
 BinaryTreeNode BinaryTreeNode.getLeft()
           
 BinaryTreeNode BinaryTreeNode.getRight()
           
 

Methods in baseCode.dataStructure.tree with parameters of type BinaryTreeNode
 void BinaryTree.setRoot(BinaryTreeNode root)
           
 void BinaryTree.insertLeft(BinaryTreeNode p, java.lang.Object o)
           
 void BinaryTree.insertRight(BinaryTreeNode p, java.lang.Object o)
           
 void BinaryTreeNode.setLeft(BinaryTreeNode left)
           
 void BinaryTreeNode.setRight(BinaryTreeNode right)
           
 

Constructors in baseCode.dataStructure.tree with parameters of type BinaryTreeNode
BinaryTree(BinaryTreeNode root)
           
 



Copyright © 2003-2005 Columbia University. All Rights Reserved.