public class Node<T> extends Object implements TreeNode<T>, Comparable<Node<T>>
Node(SortedTree<T> tree, T element)
Node<T>
add(T element)
int
compareTo(Node<T> o)
boolean
contains(T s)
find(T s)
TreeNode<T>
getChild(int i)
T
getElement()
getHeight()
getNumberOfChildren()
void
setElement(T element)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public Node(SortedTree<T> tree, T element)
public T getElement()
public void setElement(T element)
public int getNumberOfChildren()
public TreeNode<T> getChild(int i)
public Node<T> add(T element)
public int compareTo(Node<T> o)
public int getHeight()
public boolean contains(T s)
public Node<T> find(T s)