public String codieren (String q, String hilf) { String codex="[Zeichen nicht gefunden]"; int wert=q.compareTo(this.inhalt); if(wert!=0) { if (this.links!=null) { this.links.codieren(q,hilf+"0"); } if (this.rechts!=null) { this.rechts.codieren(q,hilf+"1"); } } else {codex=hilf;} return codex; }
anzeige.add( wurzel.codieren(tcode.getText(),"") );