public class Knoten
{ int inhalt;
  Knoten links, rechts;
   
  public Knoten (int wert)
  { this.inhalt = wert;  
     this.links = null;  
     this.rechts = null; 
  }
}
