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

12
graph/DirectedGraph.java Normal file
View File

@@ -0,0 +1,12 @@
package graph;
/**
* Created with MONSTER.
* User: xgiovio
* Date: 20/05/2014
* Time: 19:59
*/
public interface DirectedGraph<V, E> extends Graph<V,E>{
public boolean isDirected(Edge<E> e);
public Edge<E> insertDirectedEdge(Vertex<V> u, Vertex<V> v, V o);
}