T - Generic objectpublic static interface Grafo.Visitor<T>
| Modifier and Type | Method and Description |
|---|---|
void |
visit(Grafo.Dirigido<T> g,
Grafo.Vertex<T> v)
Called by the graph traversal methods when a vertex is first visited.
|
void visit(Grafo.Dirigido<T> g, Grafo.Vertex<T> v)
g - -
the graphv - -
the vertex being visited.