package hash;

/**
 * Interface for Hash Tables
 * @author Winston   Prakash
 */
public interface HashTable<K, V> {
    public void put(K key, V value);
    public V get(K key);
    public boolean contains(K key);
    public void remove(K key);
    public void display();
}