Package | Description |
---|---|
lib.easyjava.graph | |
lib.easyjava.graph.directed | |
lib.easyjava.graph.undirected |
Modifier and Type | Class and Description |
---|---|
class |
Edge<T>
An edge in a graph
|
class |
Vertex<T>
A vertex of a graph which stores some data
|
Modifier and Type | Method and Description |
---|---|
boolean |
GraphComponent.fromSameGraphAs(GraphComponent component)
Checks whether this component is from the same graph as another component
|
Modifier and Type | Class and Description |
---|---|
class |
DirectedEdge<T>
A directed edge in a graph
|
class |
DirectedVertex<T>
An vertex of a directed graph which stores some data
|
class |
UnweightedDirectedVertex<T>
A vertex of an unweighted directed graph which stores some data
|
class |
WeightedDirectedEdge<T>
A weighted directed edge in a graph
|
class |
WeightedDirectedVertex<T>
A vertex of a weighted directed graph which stores some data
|
Modifier and Type | Class and Description |
---|---|
class |
UndirectedEdge<T>
An undirected edge in a graph
|
class |
UndirectedVertex<T>
An vertex of an undirected graph which stores some data
|
class |
UnweightedUndirectedVertex<T>
A vertex of an unweighted undirected graph which stores some data
|
class |
WeightedUndirectedEdge<T>
A weighted undirected edge in a graph
|
class |
WeightedUndirectedVertex<T>
A vertex of a weighted undirected graph which stores some data
|