public BucketChain(int cap) { capacity = cap; head = new Bucket(capacity); }
public Bucket(int cap) { capacity = cap; fill_level = 0; next = null; }