Aggiunto graph

This commit is contained in:
2014-05-20 20:25:19 +02:00
parent 75199b5c96
commit 39d338efdf
6 changed files with 103 additions and 8 deletions

6
graph/Vertex.java Normal file
View File

@@ -0,0 +1,6 @@
package graph;
/**
* An interface for a vertex of a graph.
* @author Roberto Tamassia
*/
public interface Vertex<E> extends DecorablePosition<E> { }