tribble.util
Interface BinaryTree


public interface BinaryTree

A generic binary tree.

Since:
2000-06-14
Version:
$Revision: 1.2 $ $Date: 2003/02/11 03:52:25 $
Author:
David R. Tribble, david@tribble.com
Copyright ©2000 by David R. Tribble, all rights reserved.
Permission is granted to freely use and distribute this source code provided that the original copyright and authorship notices remain intact.
See Also:
TreeWalker

Field Summary
static java.lang.String REV
          Revision information.
static int VERS
          Class version number.
 
Method Summary
 BinaryTree left()
          Retrieves the left child subtree of this node.
 BinaryTree right()
          Retrieves the right child subtree of this node.
 

Field Detail

REV

static final java.lang.String REV
Revision information.

See Also:
Constant Field Values

VERS

static final int VERS
Class version number.

See Also:
Constant Field Values
Method Detail

left

BinaryTree left()
Retrieves the left child subtree of this node.

Since:
1.1, 2000-06-14

right

BinaryTree right()
Retrieves the right child subtree of this node.

Since:
1.1, 2000-06-14