public class ByteBTNode
extends java.lang.Object
ByteBTNode
provides a node for a binary tree. Each node
contains a piece of data (which is a reference to an object) and references
to a left and right child. The references to children may be null to indicate
that there is no child. The reference stored in a node can also be null.
Limitations:
Beyond Int.MAX_VALUE
elements, treeSize
, is
wrong.
Java Source Code for this class:
http://www.cs.colorado.edu/~main/edu/colorado/nodes/ByteBTNode.java BTNode
,
ByteBTNode
,
CharBTNode
,
DoubleBTNode
,
FloatBTNode
,
IntBTNode
,
LongBTNode
,
ShortBTNode
Constructor and Description |
---|
ByteBTNode(byte initialData,
ByteBTNode initialLeft,
ByteBTNode initialRight)
Initialize a
ByteBTNode with a specified initial data and links
children. |
Modifier and Type | Method and Description |
---|---|
byte |
getData()
Accessor method to get the data from this node.
|
ByteBTNode |
getLeft()
Accessor method to get a reference to the left child of this node.
|
byte |
getLeftmostData()
Accessor method to get the data from the leftmost node of the tree below
this node.
|
ByteBTNode |
getRight()
Accessor method to get a reference to the right child of this node.
|
byte |
getRightmostData()
Accessor method to get the data from the rightmost node of the tree below
this node.
|
void |
inorderPrint()
Uses an inorder traversal to print the data from each node at or below
this node of the binary tree.
|
boolean |
isLeaf()
Accessor method to determine whether a node is a leaf.
|
void |
postorderPrint()
Uses a postorder traversal to print the data from each node at or below
this node of the binary tree.
|
void |
preorderPrint()
Uses a preorder traversal to print the data from each node at or below
this node of the binary tree.
|
void |
print(int depth)
Uses an inorder traversal to print the data from each node at or below
this node of the binary tree, with indentations to indicate the depth
of each node.
|
ByteBTNode |
removeLeftmost()
Remove the leftmost most node of the tree below this node.
|
ByteBTNode |
removeRightmost()
Remove the rightmost most node of the tree below this node.
|
void |
setData(byte newData)
Modification method to set the data in this node.
|
void |
setLeft(ByteBTNode newLeft)
Modification method to set the link to the left child of this node.
|
void |
setRight(ByteBTNode newRight)
Modification method to set the link to the right child of this node.
|
static ByteBTNode |
treeCopy(ByteBTNode source)
Copy a binary tree.
|
static int |
treeSize(ByteBTNode root)
Count the number of nodes in a binary tree.
|
public ByteBTNode(byte initialData, ByteBTNode initialLeft, ByteBTNode initialRight)
ByteBTNode
with a specified initial data and links
children. Note that a child link may be the null reference,
which indicates that the new node does not have that child.initialData
- the initial data of this new nodeinitialLeft
- a reference to the left child of this new node--this reference may be null
to indicate that there is no node after this new node.initialRight
- a reference to the right child of this new node--this reference may be null
to indicate that there is no node after this new node.
Postcondition:
This node contains the specified data and links to its children.public byte getData()
public ByteBTNode getLeft()
public byte getLeftmostData()
public byte getRightmostData()
public ByteBTNode getRight()
public void inorderPrint()
System.out.println( )
using an inorder traversal.public boolean isLeaf()
true
(if this node is a leaf) or
false
(if this node is not a leaf.public void preorderPrint()
System.out.println( )
using a preorder traversal.public void postorderPrint()
System.out.println( )
using a postorder traversal.public void print(int depth)
depth
- the depth of this node (with 0 for root, 1 for the root's
children, and so on)(
Precondition:
depth
is the depth of this node.
Postcondition:
The data of this node and all its descendants have been writeen by
System.out.println( )
using an inorder traversal.
The indentation of each line of data is four times its depth in the
tree. A dash "--" is printed at any place where a child has no
sibling.public ByteBTNode removeLeftmost()
public ByteBTNode removeRightmost()
public void setData(byte newData)
newData
- the new data to place in this node
Postcondition:
The data of this node has been set to newData
.public void setLeft(ByteBTNode newLeft)
newLeft
- a reference to the node that should appear as the left child of this node
(or the null reference if there is no left child for this node)
Postcondition:
The link to the left child of this node has been set to newLeft
.
Any other node (that used to be the left child) is no longer connected to
this node.public void setRight(ByteBTNode newRight)
newRight
- a reference to the node that should appear as the right child of this node
(or the null reference if there is no right child for this node)
Postcondition:
The link to the right child of this node has been set to newRight
.
Any other node (that used to be the right child) is no longer connected to
this node.public static ByteBTNode treeCopy(ByteBTNode source)
source
- a reference to the root of a binary tree that will be copied (which may be
an empty tree where source
is null)source
. The return value is a reference to the root of the copy.java.lang.OutOfMemoryError
- Indicates that there is insufficient memory for the new tree.public static int treeSize(ByteBTNode root)
root
- a reference to the root of a binary tree (which may be
an empty tree where source
is null)INT.MAX_VALUE
.