[all packages] [package de.luschny.struct.genbintree] [class hierarchy] [index]

pure interface of class de.luschny.struct.genbintree.GenericBinaryTree

The documentated page.
public class GenericBinaryTree
{
    public GenericBinaryTree();
    public Node getRoot();
    public Node getLeftChild(Node parent);
    public Node getRightChild(Node parent);
    public void setRoot(A value);
    public void setLeftChild(A value,
                             Node parent);
    public void setRightChild(A value,
                              Node parent);
    public void clear();
    public A get(Node pos);
    public void replace(A value,
                        Node pos);
    public int size(Node parent);
    public class Node
}

[all packages] [package de.luschny.struct.genbintree] [class hierarchy] [index]
de.luschny.struct.genbintree.GenericBinaryTree.interface.html