Guest

caiobm

By: a guest on Jan 23rd, 2009  |  syntax: Java  |  size: 0.20 KB  |  hits: 196  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  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. }