Uses of Interface
graph.Vertex
Packages that use 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 TypeMethodDescriptiondoubleGet the length of the shortest path from vertex s to vertex f.doubleGet 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.voidInitialize the algorithm.voidInitialize the algorithm.voidCompute shortest path from vertex s to vertex f.voidCompute shortest path from vertex s to vertex f. -
Uses of Vertex in directedgraph
Classes in directedgraph that implement VertexModifier and TypeClassDescriptionclassclassclassMethods in directedgraph that return VertexModifier 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) Methods in directedgraph that return types with arguments of type VertexModifier 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()Methods in directedgraph with parameters of type VertexModifier and TypeMethodDescriptionbooleanAdjacencyListDirectedGraph.areAdjacent(Vertex v, Vertex w) booleanAdjacencyMatrixDirectedGraph.areAdjacent(Vertex v, Vertex w) booleanDirectedGraph.areAdjacent(Vertex v, Vertex w) AdjacencyListDirectedGraph.inAdjacentVertices(Vertex v) AdjacencyMatrixDirectedGraph.inAdjacentVertices(Vertex v) DirectedGraph.inAdjacentVertices(Vertex v) intintAdjacencyListDirectedGraph.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) intintAdjacencyListDirectedGraph.outIncidentEdges(Vertex v) AdjacencyMatrixDirectedGraph.outIncidentEdges(Vertex v) DirectedGraph.outIncidentEdges(Vertex v) voidAdjacencyListDirectedGraph.removeVertex(Vertex v) voidAdjacencyMatrixDirectedGraph.removeVertex(Vertex v) voidDirectedGraph.removeVertex(Vertex v) voidAdjacencyListDirectedGraph.setDirectionFrom(Edge e, Vertex v) voidAdjacencyMatrixDirectedGraph.setDirectionFrom(Edge e, Vertex v) voidDirectedGraph.setDirectionFrom(Edge e, Vertex v) voidAdjacencyListDirectedGraph.setDirectionTo(Edge e, Vertex v) voidAdjacencyMatrixDirectedGraph.setDirectionTo(Edge e, Vertex v) voidDirectedGraph.setDirectionTo(Edge e, Vertex v) -
Uses of Vertex in graph
Modifier and TypeClassDescriptionclassclassclassModifier 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) booleanAdjacencyListGraph.areAdjacent(Vertex v, Vertex w) booleanAdjacencyMatrixGraph.areAdjacent(Vertex v, Vertex w) booleanGraph.areAdjacent(Vertex v, Vertex w) intintAdjacencyListGraph.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) voidAdjacencyListGraph.removeVertex(Vertex v) voidAdjacencyMatrixGraph.removeVertex(Vertex v) voidGraph.removeVertex(Vertex v)