class Blatt extends Baum{ T inhalt; Blatt(T i){ inhalt = i;} boolean istKnoten(){ return false;} int tiefe(){return 0;} Baum reverse(){ return this; } }