Package Graph
Class OrientedGraph<T>
- java.lang.Object
-
- Graph.Graph<T>
-
- Graph.OrientedGraph<T>
-
public class OrientedGraph<T> extends Graph<T>
-
-
Constructor Summary
Constructors Constructor Description OrientedGraph()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addEdge(T u, T v)
Ajout d'un arcjava.util.ArrayList<T>
getInNeighbors(T u)
Getter des voisins entrant d'un sommetjava.util.ArrayList<T>
getOutNeighbors(T u)
Getter des voisins sortant d'un sommet
-