Uses of Interface
graph.Vertex
-
Uses of Vertex in algs
Modifier and TypeMethodDescriptionDijkstra.getPathVertices
(Vertex f) Get the vertices on the shortest path from vertex s to vertex f.DijkstraDirected.getPathVertices
(Vertex f) Get the vertices on the shortest path from vertex s to vertex f.Modifier and TypeMethodDescriptiondouble
Get the length of the shortest path from vertex s to vertex f.double
Get the length of the shortest path from vertex s to vertex f.Dijkstra.getPathEdges
(Vertex f) Get the edges on the shortest path from vertex s to vertex f.DijkstraDirected.getPathEdges
(Vertex f) Get the edges on the shortest path from vertex s to vertex f.Dijkstra.getPathVertices
(Vertex f) Get the vertices on the shortest path from vertex s to vertex f.DijkstraDirected.getPathVertices
(Vertex f) Get the vertices on the shortest path from vertex s to vertex f.void
Initialize the algorithm.void
Initialize the algorithm.void
Compute shortest path from vertex s to vertex f.void
Compute shortest path from vertex s to vertex f. -
Uses of Vertex in directedgraph
Modifier and TypeClassDescriptionclass
class
class
Modifier and TypeMethodDescriptionAbstractDirectedGraph.aVertex()
DirectedGraph.aVertex()
AbstractDirectedGraph.destination
(Edge e) DirectedGraph.destination
(Edge e) Vertex[]
AbstractDirectedGraph.endVertices
(Edge e) Vertex[]
DirectedGraph.endVertices
(Edge e) AdjacencyListDirectedGraph.insertVertex
(Object obj) AdjacencyMatrixDirectedGraph.insertVertex
(Object obj) DirectedGraph.insertVertex
(Object obj) Modifier and TypeMethodDescriptionAdjacencyListDirectedGraph.inAdjacentVertices
(Vertex v) AdjacencyMatrixDirectedGraph.inAdjacentVertices
(Vertex v) DirectedGraph.inAdjacentVertices
(Vertex v) AdjacencyListDirectedGraph.outAdjacentVertices
(Vertex v) AdjacencyMatrixDirectedGraph.outAdjacentVertices
(Vertex v) DirectedGraph.outAdjacentVertices
(Vertex v) AbstractDirectedGraph.vertices()
DirectedGraph.vertices()
Modifier and TypeMethodDescriptionboolean
AdjacencyListDirectedGraph.areAdjacent
(Vertex v, Vertex w) boolean
AdjacencyMatrixDirectedGraph.areAdjacent
(Vertex v, Vertex w) boolean
DirectedGraph.areAdjacent
(Vertex v, Vertex w) AdjacencyListDirectedGraph.inAdjacentVertices
(Vertex v) AdjacencyMatrixDirectedGraph.inAdjacentVertices
(Vertex v) DirectedGraph.inAdjacentVertices
(Vertex v) int
int
AdjacencyListDirectedGraph.inIncidentEdges
(Vertex v) AdjacencyMatrixDirectedGraph.inIncidentEdges
(Vertex v) DirectedGraph.inIncidentEdges
(Vertex v) AdjacencyListDirectedGraph.insertDirectedEdge
(Vertex v, Vertex w, Object obj) AdjacencyMatrixDirectedGraph.insertDirectedEdge
(Vertex v, Vertex w, Object obj) DirectedGraph.insertDirectedEdge
(Vertex v, Vertex w, Object obj) AdjacencyListDirectedGraph.outAdjacentVertices
(Vertex v) AdjacencyMatrixDirectedGraph.outAdjacentVertices
(Vertex v) DirectedGraph.outAdjacentVertices
(Vertex v) int
int
AdjacencyListDirectedGraph.outIncidentEdges
(Vertex v) AdjacencyMatrixDirectedGraph.outIncidentEdges
(Vertex v) DirectedGraph.outIncidentEdges
(Vertex v) void
AdjacencyListDirectedGraph.removeVertex
(Vertex v) void
AdjacencyMatrixDirectedGraph.removeVertex
(Vertex v) void
DirectedGraph.removeVertex
(Vertex v) void
AdjacencyListDirectedGraph.setDirectionFrom
(Edge e, Vertex v) void
AdjacencyMatrixDirectedGraph.setDirectionFrom
(Edge e, Vertex v) void
DirectedGraph.setDirectionFrom
(Edge e, Vertex v) void
AdjacencyListDirectedGraph.setDirectionTo
(Edge e, Vertex v) void
AdjacencyMatrixDirectedGraph.setDirectionTo
(Edge e, Vertex v) void
DirectedGraph.setDirectionTo
(Edge e, Vertex v) -
Uses of Vertex in graph
Modifier and TypeClassDescriptionclass
class
class
Modifier and TypeMethodDescriptionAbstractGraph.aVertex()
Graph.aVertex()
Vertex[]
AbstractGraph.endVertices
(Edge e) Vertex[]
Graph.endVertices
(Edge e) AdjacencyListGraph.insertVertex
(Object obj) AdjacencyMatrixGraph.insertVertex
(Object obj) Graph.insertVertex
(Object obj) Modifier and TypeMethodDescriptionAdjacencyListGraph.adjacentVertices
(Vertex v) AdjacencyMatrixGraph.adjacentVertices
(Vertex v) Graph.adjacentVertices
(Vertex v) AbstractGraph.vertices()
Graph.vertices()
Modifier and TypeMethodDescriptionAdjacencyListGraph.adjacentVertices
(Vertex v) AdjacencyMatrixGraph.adjacentVertices
(Vertex v) Graph.adjacentVertices
(Vertex v) boolean
AdjacencyListGraph.areAdjacent
(Vertex v, Vertex w) boolean
AdjacencyMatrixGraph.areAdjacent
(Vertex v, Vertex w) boolean
Graph.areAdjacent
(Vertex v, Vertex w) int
int
AdjacencyListGraph.incidentEdges
(Vertex v) AdjacencyMatrixGraph.incidentEdges
(Vertex v) Graph.incidentEdges
(Vertex v) AdjacencyListGraph.insertEdge
(Vertex v, Vertex w, Object obj) AdjacencyMatrixGraph.insertEdge
(Vertex v, Vertex w, Object obj) Graph.insertEdge
(Vertex v, Vertex w, Object obj) void
AdjacencyListGraph.removeVertex
(Vertex v) void
AdjacencyMatrixGraph.removeVertex
(Vertex v) void
Graph.removeVertex
(Vertex v)