Skip to content

Instantly share code, notes, and snippets.

# Created by https://www.gitignore.io
### Intellij ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
## Directory-based project format:
# if you remove the above rule, at least ignore the following:
package lab9;
import java.util.Iterator;
public class MyHashArrayMap implements MyMap {
private int capacity = 16; //better 17 it's a simple namber
private float loadFactor = 0.75f; // better 0,5 for this realization
private int countDel = 0; // for method remove and put
private int count = 0;
private Entry array[];
package lab4;
public class MyLinkedList {
private int size = 0;
private Element first = null;
private Element last = null;
public MyLinkedList() {
first = new Element();
last = new Element();