|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectstructure.BinaryTree<ELTTYPE>
public class BinaryTree<ELTTYPE>
This class implements a single node of a binary tree. It is a recursive structure. Relationships between nodes are doubly linked, with parent and child references. Many characteristics of trees may be detected with static methods.
BinaryTree
,
BinarySearchTree
Field Summary | |
---|---|
static BinaryTree |
EMPTY
The unique empty node |
Constructor Summary | |
---|---|
BinaryTree(ELTTYPE value)
Constructs a tree node with no children. |
|
BinaryTree(ELTTYPE value,
BinaryTree<ELTTYPE> left,
BinaryTree<ELTTYPE> right)
Constructs a tree node with no children. |
Method Summary | |
---|---|
int |
depth()
Compute the depth of a node. |
int |
hashCode()
|
int |
height()
Returns height of node in tree. |
AbstractIterator<ELTTYPE> |
inorderIterator()
Return an iterator to traverse the elements of subtree in-order |
boolean |
isBalanced()
Return true iff the tree is height balanced. |
boolean |
isComplete()
Return whether tree is complete. |
boolean |
isEmpty()
Returns true if tree is empty. |
boolean |
isFull()
Returns true if tree is full. |
boolean |
isLeftChild()
Determine if this node is a left child |
boolean |
isRightChild()
Determine if this node is a right child |
java.util.Iterator<ELTTYPE> |
iterator()
Generate an in-order iterator of subtree |
BinaryTree<ELTTYPE> |
left()
Get left subtree of current node |
AbstractIterator<ELTTYPE> |
levelorderIterator()
Method to return a level-order iterator of subtree |
BinaryTree<ELTTYPE> |
parent()
Get reference to parent of this node |
AbstractIterator<ELTTYPE> |
postorderIterator()
Return an iterator to traverse the elements of subtree in post-order |
AbstractIterator<ELTTYPE> |
preorderIterator()
Return an iterator to traverse nodes of subtree in-order |
BinaryTree<ELTTYPE> |
right()
Get right subtree of current node |
BinaryTree<ELTTYPE> |
root()
Returns reference to root of tree containing n |
void |
setLeft(BinaryTree<ELTTYPE> newLeft)
Update the left subtree of this node. |
void |
setRight(BinaryTree<ELTTYPE> newRight)
Update the right subtree of this node. |
void |
setValue(ELTTYPE value)
Set's value associated with this node |
int |
size()
Returns the number of descendants of node |
java.lang.String |
toString()
Returns a representation the subtree rooted at this node |
java.lang.String |
treeString()
Returns a string representing the tree rooted at this node. |
ELTTYPE |
value()
Returns value associated with this node |
Methods inherited from class java.lang.Object |
---|
equals, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final BinaryTree EMPTY
Constructor Detail |
---|
public BinaryTree(ELTTYPE value)
value
- A (possibly null) value to be referenced by nodepublic BinaryTree(ELTTYPE value, BinaryTree<ELTTYPE> left, BinaryTree<ELTTYPE> right)
value
- A (possibly null) value to be referenced by nodeleft
- The subtree to be left subtree of noderight
- The subtree to be right subtree of nodeMethod Detail |
---|
public BinaryTree<ELTTYPE> left()
public BinaryTree<ELTTYPE> right()
public BinaryTree<ELTTYPE> parent()
public void setLeft(BinaryTree<ELTTYPE> newLeft)
newLeft
- The root of the new left subtreepublic void setRight(BinaryTree<ELTTYPE> newRight)
newRight
- A reference to the new right subtree of this nodepublic int size()
public BinaryTree<ELTTYPE> root()
public int height()
public int depth()
public boolean isFull()
public boolean isEmpty()
public boolean isComplete()
public boolean isBalanced()
public java.util.Iterator<ELTTYPE> iterator()
public AbstractIterator<ELTTYPE> preorderIterator()
public AbstractIterator<ELTTYPE> inorderIterator()
public AbstractIterator<ELTTYPE> postorderIterator()
public AbstractIterator<ELTTYPE> levelorderIterator()
public boolean isLeftChild()
public boolean isRightChild()
public ELTTYPE value()
public void setValue(ELTTYPE value)
value
- The new value of this nodepublic int hashCode()
hashCode
in class java.lang.Object
public java.lang.String treeString()
public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |