Posted by caiobm on Sat 24 Jan 01:34
report abuse | download | new post
- /*
- * Graph Interface. To any class that is a graph
- */
- /**
- *
- * @author Caio Bomfim Martins
- */
- public interface Graph<K,V> {
- public V get(int i, int j);
- public int size();
- }
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.