I have an undirected, positive-edge-weight graph (V,E) for which I want a minimum spanning tree covering a subset k of vertices V.
I'm not limiting the size of the spanning tree to k vertices; rather I know exactly which *k* vertices must be included in the MST.
Starting from the entire MST I could pare down edges/nodes until I get the smallest MST that contains all k.
I can use Prim's algorithm to get the entire MST, and start deleting edges/nodes while the MST of subset k is not destroyed; alternatively I can use Floyd-Warshall to get all-pairs shortest paths and somehow union the paths. Are there better ways to approach this?
(k,E)? – Mat Oct 7 '11 at 9:24kvertices that are far apart. For example if I have:k--o--o--o--kwhereorepresents an unnecessary vertex andkrepresents one I need, if I deleted the middleothere would be no way to construct the MST between mykvertices. – ash Oct 7 '11 at 9:32