Interface Woerterbuch

Werbung
Woerterbuch.java
package woerterbuch;
import java.util.Collection;
public interface Woerterbuch<S,W>{
//wichtige Operationen
public Eintrag<S,W> finde(S schluessel);
public void einfuege (S schluessel, W wert);
public void streiche (Eintrag<S,W> e);
// weitere nützliche Operationen
public int groesse();
public boolean istLeer();
public Collection<W> findeAlle(S schluessel);
}
Page 1
Herunterladen