Class OfHashing

java.lang.Object
   |
   +----OfHashing

public class OfHashing
extends Object
implements Hashing
Implementation des Interface Hashing durch ein offenes Hashing mit einem Array von Listen ueber Objekten.


Variable Index

 o b
 o comp

Constructor Index

 o OfHashing(Compare, int)

Method Index

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

Variables

 o comp
 private Compare comp
 o b
 private Liste b[]

Constructors

 o OfHashing
 public OfHashing(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 boolean find(Liste l,
                      Object x)
 o lookup
 public Object lookup(Object x)
 o insert
 public boolean insert(Object x)
 o delete
 public boolean delete(Object x)