Files
GeordneterBinbaum/BinBaum.java
2025-02-18 21:20:07 +12:00

23 lines
328 B
Java

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);
}
}