Advertisement
Guest User

caiobm

a guest
Jan 23rd, 2009
501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. /*
  2.  * Graph Interface. To any class that is a graph
  3.  */
  4.  
  5. /**
  6.  *
  7.  * @author Caio Bomfim Martins
  8.  */
  9. public interface Graph<K,V> {    
  10.     public V get(int i, int j);
  11.     public int size();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement