Package | Description |
---|---|
lib.easyjava.graph | |
lib.easyjava.graph.directed | |
lib.easyjava.graph.undirected |
Modifier and Type | Interface and Description |
---|---|
interface |
UnweightedGraph<T>
An unweighted graph which contains Vertices which store data and Edges.
|
interface |
WeightedGraph<T>
A weighted graph which contains Vertices which store data and Edges.
|
Modifier and Type | Method and Description |
---|---|
boolean |
GraphComponent.fromGraph(Graph<?> graph)
Checks whether this component is from a particular graph
|
Modifier and Type | Class and Description |
---|---|
class |
DirectedGraph<T>
A directed graph which contains Vertices which store data and Edges.
|
class |
UnweightedDirectedGraph<T>
An unweighted directed graph which contains Vertices which store data and
Edges.
|
class |
WeightedDirectedGraph<T>
A weighted directed graph which contains Vertices which store data and Edges.
|
Modifier and Type | Class and Description |
---|---|
class |
UndirectedGraph<T>
An undirected graph which contains Vertices which store data and Edges.
|
class |
UnweightedUndirectedGraph<T>
An unweighted undirected graph which contains Vertices which store data and
Edges.
|
class |
WeightedUndirectedGraph<T>
A weighted undirected graph which contains Vertices which store data and
Edges.
|