Tagged Questions

Given a connected, undirected graph, a spanning tree of that graph is a subgraph that is a tree and connects all the vertices together. A single graph can have many different spanning trees. We can also assign a weight to each edge, which is a number representing how unfavorable it is, and use this ...

learn more… | top users | synonyms

11
votes
3answers
1k views

All minimum spanning trees implementation

I've been looking for an implementation (I'm using networkx library.) that will find all the minimum spanning trees (MST) of an undirected weighted graph. I can only find implementations for ...
11
votes
3answers
2k views

Updating a Minimum spanning tree when a new edge is inserted

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 G. ...
9
votes
2answers
144 views

A fast algorithm for minimum spanning trees when edge lengths are constrained?

Suppose that you have a directed graph with nonnegative, integer edge lengths that are in the range 0 to U - 1, inclusive. What is the fastest algorithm for computing a minimum spanning tree of this ...
9
votes
5answers
8k views

Kruskal vs Prim

I was wondering when one should use Prim's algorithm and when Kruskal's to find the minimum spanning tree? They both have easy logics, same worst cases, and only difference is implementation which ...
7
votes
2answers
170 views

Implementing Kruskal's algorithm in Ada, not sure where to start

With reference to Kruskal's algorithm in Ada, I'm not sure where to start. I'm trying to think through everything before I actually write the program, but am pretty lost as to what data structures I ...
7
votes
2answers
266 views

Efficient minimal spanning tree in metric space

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 ...
7
votes
5answers
1k views

A two way minimum spanning tree of a directed graph

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 ...
5
votes
3answers
2k views

how to find maximum spanning tree?

Does the opposite of Kruskal's algorithm for minimum spanning tree work for it ? I mean, choosing the max weight (edge) every step ? Any other idea to find maximum spanning tree ?
4
votes
1answer
139 views

How to find a “minimal spanning set” for a collection of regular expressions?

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 ...
4
votes
2answers
777 views

The fastest minimum spanning tree algorithm

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 of ...
4
votes
1answer
384 views

A 2-approximation algorithm for Vertex-Cover problem using “Spanning Tree”

I have seen a question on 2-approximation algorithm for Vertex-Cover problem(VC, known Np-Complete problem), and i don't know the answer. The problem is the following : Find a 2-approximation ...
4
votes
3answers
903 views

How can I write a MST algorithm (Prim or Kruskal) in Haskell?

I can write both Prim's and Kruskal's algorithms to find a minimum spanning tree in C++ or Java, but I want to know how to implement them in Haskell with O(mlogm) or O(mlogn) (pure functional programs ...
4
votes
4answers
906 views

Is there a minimum spanning tree that does not contain the min/max weighted edge?

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 ...
3
votes
2answers
60 views

Graph Minimum Spanning Tree using BFS

This is a problem from a practice exam that I'm struggling with: Let G = (V, E) be a weighted undirected connected graph, with positive weights (you may assume that the weights are distinct). ...
3
votes
2answers
115 views

Mathematica function turns red, does not work

I'm trying to find the minimum spanned tree using Mathematica and I want to use the MinimumSpanningTree function from Combinatorica. I'm using the following code. Needs["Combinatorica`"] ...
3
votes
1answer
96 views

Prims Algorithm Total Running time!

"Thus, the total time for Prim's algorithm is O(V lg V + E lg V) = O(E lg V), which is asymptotically the same as for our implementation of Kruskal's algorithm." From ...
3
votes
2answers
156 views

Algorithms for bidirectional graphs

Say I have a graph (network) of nodes, with weightings on the following: 1. travelling one way on a link between two nodes. 2. travelling the other way on a link between two nodes (these might be ...
3
votes
4answers
415 views

finding all minimal spanning trees [closed]

Possible Duplicate: All minimum spanning trees implementation How can I find all minimum spanning trees in an undirected graph in an efficient way?
3
votes
1answer
244 views

Fast question about minimum spanning trees

If any edge from a spanning tree T0 is contained in some minimum spanning tree T*, does this imply that T0 is also a minimum spanning tree ? Right now, I'm trying to draw on paper some graphs to ...
3
votes
2answers
731 views

O(1) Make, Find, Union in Disjoint Sets Data Structure

Today, I had discussion with someone about Kruskal Minimum Spanning Tree algorithm because of page 13 of this slide. The author of the presentation said that if we implement disjoint sets using ...
3
votes
1answer
313 views

How is it possible for Boruvka's algorithm's complexity to be O(E*logV)?

1 Begin with a connected graph G containing edges of distinct weights, and an empty set of edges T 2 While the vertices of G connected by T are disjoint: 3 Begin with an empty set of edges E 4 ...
3
votes
1answer
141 views

Algorithm(s) for the constrained degree + bounded diameter minimum spanning tree?

Suppose I have 3 kinds of restrictions to computing a spanning tree: Constrained degree (eg: a node in a spanning tree may only be connected up to 3 other nodes) Bounded diameter (eg: all edges' ...
3
votes
2answers
976 views

Running time of minimum spanning tree? ( Prim method )

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 number ...
3
votes
4answers
677 views

Stuck on solving the Minimal Spanning Tree problem

I have reduced my problem to finding the minimal spanning tree in the graph. But I want to have one more constraint which is that the total degree for each vertex shouldnt exceed a certain constant ...
2
votes
2answers
70 views

All pairs shortest paths with dynamic programming

All, I am reading about the relationship between all pairs shortest path and matrix multiplication. Consider the multiplication of the weighted adjacency matrix with itself - except, in this ...
2
votes
4answers
97 views

Can this be solved using a minimum spanning tree algorithm?

Suppose I have a weighted non-directed graph G = (V,E). Each vertex has a list of elements. We start in a vertex root and start looking for all occurances of elements with a value x. We wish to ...
2
votes
0answers
50 views

Improvement of a C function based in igraph [closed]

Related with the question "Edge - weight association" and the Tamás's answer, I wrote the below code to get the arc weigth of the mst tree extracted from the original vector weigth. I will use ...
2
votes
3answers
419 views

Why do we need a priority queue in Prim's Algorithm

As my question speaks I want to know why do we use Priority queue in Prim's Algorithm? How does it saves us from using the naive way (yes I've heard of it but don't know why). I'd be very happy if ...
2
votes
1answer
76 views

Edge - weight association

I'm working in C with igraph library. I need to calculate the the minimum spanning tree of a graph, using the following call: igraph_minimum_spanning_tree_prim( &input_graph, &mst_tree, ...
2
votes
1answer
692 views

Advantage and disadvantage of spanning tree with even distance

It's new year day and still can't solve my problem about a spanning tree algorithm. I can't insert picture yet so I have to try to explain the enviroment with words. It's 36 nodes and the distance to ...
2
votes
1answer
736 views

Java: Prim's with Fibonacci heap? (JGraphT)

JGraphT has a nice Fibonacci Heap class. How can I use it to implement Prim's minimum spanning tree algorithm?
2
votes
3answers
1k views

Java: Minimum spanning tree with JGraphT?

I have a problem that can essentially be viewed as a graph. I'm considering using JGraphT to implement it instead of rolling my own. What would be the best way to get a minimum spanning tree out of a ...
1
vote
1answer
80 views

Finding a Minimum Spanning Tree given the old MST and a new vertex + edges

In a sample problem, I'm given a MST T for a weighted graph G = (V, E). The question is, if a new vertex v and all its edges are to be added to the graph, what is an o(|V|log|V|) algorithm to compute ...
1
vote
1answer
70 views

Minimum spanning tree in a graph with multiple root vertices

I would like to know if there is an algorithm which computes a minimum spanning tree (optimum branching) in a directed graph given a set of root vertices between all of these root vertices, but not ...
1
vote
1answer
64 views

How to compute the cost of an mst graph.

I'm working in C, using the igraph library. I need to get the minimum spanning tree of a given graph stores in a igraph_graph_t type (g). Also I have a igraph_vector containing the weight of each edge ...
1
vote
2answers
338 views

Finding Minimum spanning tree with an adjacency matrix with more than 1 connected component

I have an adjacency matrix built for one of my projects, and I need to be able to construct a minimum spanning tree out of that matrix. From reading around, it looks like Prim's algorithm is best for ...
1
vote
1answer
258 views

Prim’s algorithm and MST

How can I describe a family of graphs with V vertices and E edges for which the worst-case running of the priority-queue implementation of Prim’s algorithm is confirmed?
1
vote
1answer
210 views

Find parent node of a tree to create the shortest possible tree height

I have an undirected graph represented as an adjacency matrix of Euclidean weights. I'm using this to represent the minimum spanning tree for a larger complete graph. What I want to find is the ...
1
vote
2answers
578 views

Kruskal's algorithm and disjoint-set data structure: Do I need the following two lines of code?

I've implemented Kruskal's algorithm in C++ using the disjoint-set data structure according to Wikipedia like this: #include <stdio.h> #include <algorithm> #define MAX_EDGES 10000000 ...
1
vote
1answer
217 views

Minimum Spanning Tree

I am little bit confuse about the general form of minimum spanning tree that includes an edge e that is not part of Minimum spanning tree. My question is: Let G be a weighted graph with all the edges ...
1
vote
1answer
136 views

minimum weight in the cut of a MST

Let G be an undirected graph with distinct edge weights. Let T be the MST in G. Let (u, v) be any edge in T. Show that there is a cut (S; V-S) such that (u; v) is the minimum weight edge in this ...
1
vote
1answer
528 views

Minimal Spanning Tree from adjacency matrix in Java

Please, help me to understand how to get minimal spanning tree from adjacency matrix of graph! I write coursework about it in java, deadline is 16.12.2010, but I feel that it shall be fail. Now my ...
1
vote
1answer
194 views

Minimum Spanning Tree: What exactly is the Cut Property?

I've been spending a lot of time reading online presentations and textbooks about the cut property of a minimum spanning tree. I don't really get what it's suppose to illustrate or even why it's ...
1
vote
1answer
304 views

Is there a Dynamic Programming way to compute the k minimum spanning trees?

My teacher asked us to implement a Dynamic Programming solution to that problem, but I'm thinking one doesn't exist since I couldn't find it using Google. Anyway, given a graph and a k, say 3, you ...
1
vote
2answers
231 views

Prim's MST: Does the start node matter?

I intuitively feel that if one is using Prim's algorithm to find a graph's minimum spanning tree, it doesn't matter which root node is picked - the resultant MST will have the same weight regardless. ...
1
vote
3answers
588 views

Java: How does my Prim's look?

I am trying to implement Prim's minimum spanning tree algorithm with JGraphT. How does it look? One issue I ran into was JGraphT's handling of everything like it's directed. So sometimes it is ...
1
vote
3answers
316 views

Java: Design Question - minimal pairs between sets

I have two sets of Animal objects. The distance between animals is defined using a specific algorithm that looks at their traits. I am trying to design a method to find the pair from the two sets (one ...
0
votes
2answers
45 views

Looking for Integer LP formalisation of k-MST

I am looking for a Integer LP formalisation for the k-Minimum Spanning Tree problem. My idea: x_ij = 1 means there is an edge from i to j in the tree. y_i = 1 means vertex i is part of the tree ...
0
votes
1answer
22 views

Travelling salesman query

I have read that one of the approximations for the TSP is to do the following: - Compute the minimal spanning tree (MST) - Perform a DFS of the MST The goal of solving the TSP is that every vertex ...
0
votes
2answers
36 views

subgraph of an acyclic graph covering some selected nodes but other nodes not on the path

I have a undirected and unweighted (or all edges are weighted 1) acyclic graph (G=VxE). Some of this graph's nodes are selected as sV (sV is subset of V). Problem is, I want to find the subgraph ...

1 2