Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package zbior;
  7.  
  8. import java.util.HashSet;
  9. import java.util.Set;
  10.  
  11. /**
  12. *
  13. * @author Hubert
  14. */
  15. public interface InterfejsZbior {
  16. public int[] GetTab();
  17. public int GetRozmiar();
  18. public void wczytaj(String filename);
  19. public void wypisz();
  20. public void dodaj(int nowy);
  21. public void usun(int element);
  22. public boolean czyZawiera(int element);
  23. public boolean czyRowne(InterfejsZbior drugi);
  24. public InterfejsZbior suma(InterfejsZbior drugi);
  25. public InterfejsZbior roznica(InterfejsZbior drugi);
  26. public InterfejsZbior przeciecie(InterfejsZbior drugi);
  27. public InterfejsZbior roznicaSymetryczna(InterfejsZbior drugi);
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement