Esempio n. 1
0
 BE suchen(String index) {
   try {
     return root.suchen(index);
   } catch (IndexNotFoundException e) {
     System.err.println("\"" + index + "\" konnte nicht gefunden werden!");
     return null;
   }
 }
Esempio n. 2
0
 public void einfuegen(String index, String info) throws IndexAlreadyExistsException {
   root = root.einfuegen(index, info);
 }
Esempio n. 3
0
 public int knotenanzahl() {
   return root.knotenanzahl();
 }
Esempio n. 4
0
 public int tiefe() {
   return root.tiefe();
 }
Esempio n. 5
0
 public void loeschen(String index) throws IndexNotFoundException {
   root = root.loeschen(index);
 }