Package dev.nm.graph
Interface UnDiGraph<V,E extends UndirectedEdge<V>>
-
- Type Parameters:
V
- vertex typeE
- undirected edge type
- All Superinterfaces:
Graph<V,E>
- All Known Implementing Classes:
SparseUnDiGraph
public interface UnDiGraph<V,E extends UndirectedEdge<V>> extends Graph<V,E>
An undirected graph is a graph, or set of nodes connected by edges, where an edge does not differentiate between (a, b) or (b, a).- See Also:
- Wikipedia: Undirected graph
-
-
Method Summary
-
Methods inherited from interface dev.nm.graph.Graph
addEdge, addVertex, edges, edges, removeEdge, removeVertex, vertices
-
-