2025-02-18 08:59:50 +01:00
|
|
|
|
|
|
|
|
public class Abschluss extends Baumelement
|
|
|
|
|
{
|
|
|
|
|
// Attribute
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Konstruktor für Objekte der Klasse Abschluss
|
|
|
|
|
*/
|
|
|
|
|
public Abschluss()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2025-02-18 09:44:58 +01:00
|
|
|
public Baumelement einfügen(Datenelement datenNeu) {
|
|
|
|
|
return new Knoten(datenNeu);
|
|
|
|
|
}
|
2025-02-18 22:14:32 +12:00
|
|
|
|
|
|
|
|
public Datenelement Suche(String suche){
|
2025-02-21 06:25:31 -05:00
|
|
|
System.err.println("[404]Not found");
|
2025-02-18 22:14:32 +12:00
|
|
|
return null;
|
|
|
|
|
}
|
2025-02-21 06:25:31 -05:00
|
|
|
public int HöheGeben(){
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean IstVorhanden(String Testwort){
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int TiefeGeben(String suche){
|
|
|
|
|
System.err.println("[404]Not found");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2025-02-18 08:59:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|