Advertisement
Guest User

Untitled

a guest
May 24th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package TDA_Mapeo;
  2.  
  3. import ColaConPrioridad.Entry;
  4.  
  5. public interface Map<K,V> {
  6.  
  7. public int size();
  8.  
  9. public boolean isEmpty();
  10.  
  11. public V get(K k);
  12.  
  13. public V put(K k, V v);
  14.  
  15. public V remove(K k);
  16.  
  17. public Iterable<K> keys();
  18.  
  19. public Iterable<V> values();
  20.  
  21. public Iterable<Entry<K,V>> entries();
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement