minimum-spanning-tree Questions
3
Solved
Possible Duplicate:
All minimum spanning trees implementation
How can I find all minimum spanning trees in an undirected graph in an efficient way?
Ligament asked 31/12, 2010 at 9:31
2
Solved
http://en.wikipedia.org/wiki/Minimum_spanning_tree
I'm looking to benchmark my minimum spanning tree algorithm against the best of the best.
Does someone know where I can find a C++ implementation...
Tolerant asked 7/2, 2011 at 17:16
1
Solved
CONTEXT:
I have a smallish (currently less than 100) but growing collection of Regular Expressions, and I want to optimize the process of determining for a given text string which of the REs in my...
Lockage asked 2/5, 2011 at 18:25
2
Solved
I have a large set of points (n > 10000 in number) in some metric space (e.g. equipped with Jaccard Distance). I want to connect them with a minimal spanning tree, using the metric as the weight on...
Barnabas asked 17/1, 2011 at 17:51
5
Solved
Given a directed graph with weighted edges, what algorithm can be used to give a sub-graph that has minimum weight, but allows movement from any vertex to any other vertex in the graph (under the a...
Pentastyle asked 10/5, 2010 at 6:20
3
I've been presented the following problem in University:
Let G = (V, E) be an (undirected) graph with costs ce >= 0 on the edges e ∈ E. Assume you are given a minimum-cost spanning tree T in ...
Deepsix asked 20/4, 2010 at 23:50
4
Solved
If we have an (arbitrary) connected undirected graph G, whose edges have distinct weights,
does every MST of G contains the minimum weighted edge?
is there an MST of G that does not contain the m...
Cobber asked 11/4, 2010 at 12:31
2
Solved
I have written a code that solves MST using Prim method. I read that this kind of implementation(using priority queue) should have O(E + VlogV) = O(VlogV) where E is the number of edges and V numbe...
Trapes asked 19/11, 2009 at 14:26
© 2022 - 2024 — McMap. All rights reserved.