Class Baum

java.lang.Object
   |
   +----Baum

public class Baum
extends Object
Klasse Baum mit drei Konstruktoren und vier Methoden. Ein Baum besteht aus den Datenfeldern inhalt, links, rechts.


Variable Index

 o inhalt
 o LEER
 o links
 o rechts

Constructor Index

 o Baum()
 o Baum(Baum, Object, Baum)
 o Baum(Object)

Method Index

 o empty()
 o left()
 o right()
 o value()

Variables

 o inhalt
 Object inhalt
 o links
 Baum links
 o rechts
 Baum rechts
 o LEER
 public static final Baum LEER

Constructors

 o Baum
 public Baum()
 o Baum
 public Baum(Object x)
 o Baum
 public Baum(Baum l,
             Object x,
             Baum r)

Methods

 o empty
 public boolean empty()
 o left
 public Baum left()
 o right
 public Baum right()
 o value
 public Object value()