- getDegree(int) - Method in class CarlUnweightedGraph
-
Returns the out-degree of the specified vertex.
- getDegree(int) - Method in class CarlWeightedGraph
-
Returns the out-degree of the specified vertex.
- getDegree(int) - Method in interface Graph
-
Returns the out-degree of the specified vertex.
- getInDegree(int) - Method in class CarlUnweightedGraph
-
Returns the in-degree of the specified vertex.
- getInDegree(int) - Method in class CarlWeightedGraph
-
Returns the in-degree of the specified vertex.
- getInDegree(int) - Method in interface Graph
-
Returns the in-degree of the specified vertex.
- getNeighbors(int) - Method in class CarlUnweightedGraph
-
Returns an iterator over the neighbors of the specified vertex.
- getNeighbors(int) - Method in class CarlWeightedGraph
-
Returns an iterator over the neighbors of the specified vertex.
- getNeighbors(int) - Method in interface Graph
-
Returns an iterable object that allows iteration over the neighbors of
the specified vertex.
- getWeight(int, int) - Method in class CarlWeightedGraph
-
Gets the weight of the edge between two vertices.
- getWeight(int, int) - Method in interface WeightedGraph
-
Gets the weight of the edge between two vertices.
- Graph - Interface in <Unnamed>
-
A common interface for the Graph ADT, encompassing graphs both unweighted and
weighted, undirected and directed.