Initial sharing of project

This commit is contained in:
2025-02-18 08:59:50 +01:00
commit 5b644264af
8 changed files with 224 additions and 0 deletions

26
BinBaum.java Normal file
View File

@@ -0,0 +1,26 @@
/**
* Beschreiben Sie hier die Klasse BinBaum.
*
* @author (Ihr Name)
* @version (eine Versionsnummer oder ein Datum)
*/
public class BinBaum
{
// Attribute
Baumelement wurzel;
/**
* Konstruktor für Objekte der Klasse BinBaum
*/
public BinBaum()
{
this.wurzel = new Abschluss();
}
// weitere Methoden
}