This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 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(); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 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[]; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # 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: |