Package org.jungrapht.samples.util
Class SpanningTreeAdapter
- java.lang.Object
-
- org.jungrapht.samples.util.SpanningTreeAdapter
-
public class SpanningTreeAdapter extends Object
-
-
Constructor Summary
Constructors Constructor Description SpanningTreeAdapter()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <V,E>
org.jgrapht.Graph<V,E>getSpanningTree(org.jgrapht.Graph<V,E> graph)
-
-
-
Method Detail
-
getSpanningTree
public static <V,E> org.jgrapht.Graph<V,E> getSpanningTree(org.jgrapht.Graph<V,E> graph)
- Type Parameters:
V
- vertex typeE
- edge type- Parameters:
graph
- input graph, directed or undirected- Returns:
- a directed acyclic graph that contains all vertices and edges from the minimum spanning tree of the input graph
-
-