public class BinBaum { // Attribute Baumelement wurzel; /** * Konstruktor für Objekte der Klasse BinBaum */ public BinBaum() { this.wurzel = new Abschluss(); } public void einfügen(Datenelement datenNeu) { this.wurzel = this.wurzel.einfügen(datenNeu); } }