Uses of Interface
graph.Edge
-
Uses of Edge in algs
Modifier and TypeMethodDescriptionDijkstra.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. -
Uses of Edge in directedgraph
Modifier and TypeClassDescriptionclass
class
class
Modifier and TypeMethodDescriptionAdjacencyListDirectedGraph.insertDirectedEdge
(Vertex v, Vertex w, Object obj) AdjacencyMatrixDirectedGraph.insertDirectedEdge
(Vertex v, Vertex w, Object obj) DirectedGraph.insertDirectedEdge
(Vertex v, Vertex w, Object obj) Modifier and TypeMethodDescriptionAbstractDirectedGraph.edges()
DirectedGraph.edges()
AdjacencyListDirectedGraph.inIncidentEdges
(Vertex v) AdjacencyMatrixDirectedGraph.inIncidentEdges
(Vertex v) DirectedGraph.inIncidentEdges
(Vertex v) AdjacencyListDirectedGraph.outIncidentEdges
(Vertex v) AdjacencyMatrixDirectedGraph.outIncidentEdges
(Vertex v) DirectedGraph.outIncidentEdges
(Vertex v) Modifier and TypeMethodDescriptionAbstractDirectedGraph.destination
(Edge e) DirectedGraph.destination
(Edge e) Vertex[]
AbstractDirectedGraph.endVertices
(Edge e) Vertex[]
DirectedGraph.endVertices
(Edge e) void
AdjacencyListDirectedGraph.makeUndirected
(Edge e) void
AdjacencyMatrixDirectedGraph.makeUndirected
(Edge e) void
DirectedGraph.makeUndirected
(Edge e) void
AdjacencyListDirectedGraph.removeEdge
(Edge e) void
AdjacencyMatrixDirectedGraph.removeEdge
(Edge e) void
DirectedGraph.removeEdge
(Edge e) void
AdjacencyListDirectedGraph.reverseDirection
(Edge e) void
AdjacencyMatrixDirectedGraph.reverseDirection
(Edge e) void
DirectedGraph.reverseDirection
(Edge e) 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 Edge in graph
Modifier and TypeClassDescriptionclass
class
class
Modifier and TypeMethodDescriptionAdjacencyListGraph.insertEdge
(Vertex v, Vertex w, Object obj) AdjacencyMatrixGraph.insertEdge
(Vertex v, Vertex w, Object obj) Graph.insertEdge
(Vertex v, Vertex w, Object obj) Modifier and TypeMethodDescriptionAbstractGraph.edges()
Graph.edges()
AdjacencyListGraph.incidentEdges
(Vertex v) AdjacencyMatrixGraph.incidentEdges
(Vertex v) Graph.incidentEdges
(Vertex v) Modifier and TypeMethodDescriptionVertex[]
AbstractGraph.endVertices
(Edge e) Vertex[]
Graph.endVertices
(Edge e) void
AdjacencyListGraph.removeEdge
(Edge e) void
AdjacencyMatrixGraph.removeEdge
(Edge e) void
Graph.removeEdge
(Edge e)