Implementierung des Binärbaums - Teil 2: Einfügen
This commit is contained in:
@@ -18,7 +18,9 @@ public class BinBaum
|
||||
this.wurzel = new Abschluss();
|
||||
}
|
||||
|
||||
// weitere Methoden
|
||||
public void einfügen(Datenelement datenNeu) {
|
||||
this.wurzel = this.wurzel.einfügen(datenNeu);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user