Class BTNode<T extends Comparable<? super T>>
java.lang.Object
com.thomas.trees.BTNode<T>
- Type Parameters:
T- The type of the Node
- Direct Known Subclasses:
AVLNode
Simple implementation of a Binary Tree Node
- See Also:
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
BTNode
Creates a node with only the data
the left and right node are empty- Parameters:
value- The data of this node
-
BTNode
-
-
Method Details
-
getData
-
setData
-