Class GeHashing

java.lang.Object
   |
   +----GeHashing

public class GeHashing
extends Object
implements Hashing
Implementation des Interface Hashing durch ein geschlossenes Hashing mit einem Array von Objekten.


Variable Index

 o BELEGT
 o comp
 o GELOESCHT
 o inhalt
 o LEER
 o zustand

Constructor Index

 o GeHashing(Compare, int)

Method Index

 o delete(Object)
 o find(Object)
 o hash(Object)
 o insert(Object)
 o lookup(Object)
 o toString()

Variables

 o LEER
 private static final int LEER
 o BELEGT
 private static final int BELEGT
 o GELOESCHT
 private static final int GELOESCHT
 o comp
 private Compare comp
 o inhalt
 private Object inhalt[]
 o zustand
 private int zustand[]

Constructors

 o GeHashing
 public GeHashing(Compare comp,
                  int N)

Methods

 o hash
 private int hash(Object x)
 o toString
 public String toString()
Overrides:
toString in class Object
 o find
 private int find(Object x)
 o lookup
 public Object lookup(Object x)
 o insert
 public boolean insert(Object x)
 o delete
 public boolean delete(Object x)