Given a connected, undirected graph, a spanning tree of that graph is a subgraph that is a tree and connects all the vertices together.

learn more… | top users | synonyms

1
vote
1answer
61 views

Kruskal’s Minimum Spanning Tree Algorithm (C++)

I'm working though an assignment on the Stanford CS106B C++ course, but I'm massively stuck implementing Kruskal's algorithm to find a minimum spanning tree. To be more specific, I can't figure out ...
-1
votes
1answer
70 views

Deleting an edge from Minimum Spanning Tree

I am studying algorithms, and i have seen an exercise saying the following: Let G be a weighted graph. Let T be an MST for G. Assume that an edge in G is deleted. Describe an algorithm that fi nds an ...
1
vote
2answers
59 views

Minimum spaning tree with Kruskal' algorithm

How i can calculate im R(3.0.0 - Linux x32) minimum spanning tree with Kruskal's algorithm? I create an weighted full graph with igraph (0.6.5) library as folws: set.seed(1234567890) g <- ...
4
votes
3answers
93 views

Graph Has Two / Three Different Minimal Spanning Trees ?

I'm trying to find an efficient method of detecting whether a given graph G has two different minimal spanning trees. I'm also trying to find a method to check whether it has 3 different minimal ...
0
votes
1answer
41 views

Network Design: Why is Minimum Spanning Tree so widely used in Network Design

Recently I am really interested in Network Design. Right now I am reading about Minimum Spanning Tree. However I cannot find more than two reasons to use it: - minimize total cost of cable used to ...
2
votes
1answer
28 views

Feedback on algorithm for Steiner Tree with restrictions

For an assignment, I have to create a Steiner Tree. However, this is not a typical Steiner Tree, as the graph structure we're required to use does not allow insertion of new vertices. Rather, the ...
0
votes
0answers
66 views

PrimsAlgorithm, how to do this for graphs?

I have created a graph, and now I am trying to traverse through the graph by means of a minimum spanning tree. I have attempted to use PrimsAlgorithm, but something is going wrong and my code runs ...
1
vote
1answer
60 views

Decide whether there is a MST that contains some edges of 2 distinct edge sets

Let G = (V, E) be a weighted, connected and undirected graph. Let T1 and T2 be 2 different MST's. Suppose we can write E = (A1 U B U A2) such that: B is the intersection of the edges of T1 and T2, and ...
-1
votes
1answer
77 views

Finding most effective upper bound for TSP using MST

I'm curious as to what the most effective methods are to find the most optimal (or close to optimal) upper bound for the TSP using a MST. I'm trying to optimize my algorithms for speed, but I'm ...
2
votes
1answer
44 views

Optimal distribution of power plants on a city

I've searched both Google and Stack Overflow for an answer to my problem but I can't find one. I need to find the optimal distribution for the power network of a city. The city is represented by a ...
0
votes
0answers
43 views

minimal cost spanning tree with exactly K white edges in undirected connected weight graph with white and black edges

Let's say: G is an undirected connected graph G has M edges Every edge has it's weight/cost Every edge has it's color - black or white How should I find Minimal Cost Spanning Tree with exactly K ...
0
votes
2answers
159 views

Prim's algorithm for dynamic locations

Suppose you have an input file: <total vertices> <x-coordinate 1st location><y-coordinate 1st location> <x-coordinate 2nd location><y-coordinate 2nd location> ...
0
votes
0answers
59 views

Euclidean Minimum spanning tree O(n2) (n-square) implementaion

If we are given a set of points, and we need to find the minimum spanning tree by connecting all the points, it would take O(n*n) time to build the edge matrix (precisely, n*(n-1)/2 time). Then if we ...
4
votes
1answer
140 views

Max weight euclidean spanning tree

A maximum spanning tree can be found by running kruskal's algorithm(just changing the edges function and considering the max weight edges first). I am interested in finding the max weight euclidean ...
0
votes
1answer
163 views

What is the logical error in my implementation of Prim's algorithm for minimum spanning tree?

#define ll long long ll prims(int n) { ll ans; vector<bool> used (n); #define INF 1000000000000LL vector<ll> min_e (n, INF), sel_e (n, -1); min_e[0]=-1*INF; ...
0
votes
0answers
106 views

Which is an easy to implement approach to create N dimensional Euclidean Maximum Distance Spanning tree?

I am looking for easy ways ie without the triangulation method to implement N dimensional Euclidean Maximum Spanning Tree. I have gone through existing questions here,but none of them answer this ...
3
votes
2answers
139 views

Find all critical edges of an MST

I have this question from Robert Sedgewick's book on algorithms. Critical edges. An MST edge whose deletion from the graph would cause the MST weight to increase is called a critical edge. Show ...
1
vote
1answer
202 views

Creating a weighted undirected graph in “igraph” in C/C++

Problem: I want to make a weighted undirected graph from adjacency matrix stored in a .csv file using igraph and then do the minimum spanning tree and some other algorithms on it. I started with ...
0
votes
1answer
42 views

java network accept network connection between threads

In Java, I am creating 256 threads which communicate with each other using network socket. All this 256 threads run in parallel. When a thread is spawned, it tries to connect to its neighbor threads. ...
0
votes
1answer
101 views

Describe Algorithm that Decides Whether There are Exactly 2 Different MSTs

Let G = (V, E) be a weighted, connected and undirected graph. Describe an efficient algorithm that decides whether there are exactly 2 different MSTs in G. The previous question which I already ...
2
votes
1answer
141 views

Decide Whether There Exists a MST That Contains a Given Edge in Linear Time

Let G = (V, E) be a weighted, connected and undirected graph and let e be any edge in E. Show a linear time algorithm that decides whether there exist a Minimum Spanning Tree that contains the edge e. ...
3
votes
2answers
318 views

Finding a New Minimum Spanning Tree After a New Edge Was Added to The Graph

Let G = (V, E) be a weighted, connected and undirected graph and let T be a minimum spanning tree. Let e be any edge not in E (and has a weight W(e)). Prove or disprove: T U {e} is an edge set that ...
0
votes
1answer
173 views

The Edge Set Grown in Kruskal's Algorithm [closed]

Let G = (V, E) be a weighted, connected and undirected graph. Let T be the edge set that is grown in Kruskal's algorithm and stopped after k iterations (so T might contain less than |E|-1 edges). Let ...
2
votes
2answers
245 views

Check if edge is included in SOME MST in linear time (non-distinct values)

I am working on an algorithm to check if a given edge is included in one of all possible mst's. For this question, we are considering non-distinct values and our edge e connects vertices A & B. ...
1
vote
0answers
70 views

Correlation Network Implementation

I have been working on my graph/network problem, and I think I finally know what I want to do. Now that I am getting into the implementation, I am having issues deciding what libraries to use. The ...
1
vote
1answer
177 views

Finding a minimum/maximum weight Steiner tree

I asked this question on reddit, but haven't converged on a solution yet. Since many of my searches bring me to Stack Overflow, I decided I would give this a try. Here is a simple formulation of my ...
3
votes
1answer
135 views

Reduction of Leaf constrained MST problm to Hamiltonian path problm .

It is well known that computing a spanning tree that has the minimum possible number of leaves is NP complete. But I cannot figure out a polynomial time reduction of this problem to the hamiltonian ...
0
votes
2answers
68 views

How to run Dijkestra Algorithm to make it similar to Prim and generate an MST?

Let's assume I am running Dijkstra Algorithm to visit all nodes (instead of original initial node and the destination node), i.e. I am checking to see if all nodes are visited or not, instead of the ...
-2
votes
1answer
1k views

implementing kruskals algorithm in java

im able to run this code for some input. but in some cases i get the wrong spanning tree. for eg: if i give the input as follows while executing the program : Enter no.of vertices: 5 Enter ...
0
votes
2answers
85 views

MST-related algorithm

Given an undirected and connected graph G(V,E) with weight function w:E->R, an edge e(u,v) belongs to E. Which algorithm that runs in linear run-time complexity can assure if there's a minimal ...
2
votes
2answers
475 views

Minimum Spanning Tree quick graph

I want to find the minimum spanning tree of the following graph using quick graph. I Went through the manual provided but I don't really understand how to do it. Here is my code: static void ...
-1
votes
1answer
241 views

What is a minimum spanning forest? [closed]

A minimum spanning tree gives the cheapest way an undirected graph. But what is a minimum spanning forest? Is it defined for connected graphs or unconnected graphs?
10
votes
4answers
214 views

Modeling a graph in Python

I'm trying to solve a problem related to graphs in Python. Since its a comeptitive programming problem, I'm not using any other 3rd party packages. The problem presents a graph in the form of a 5 X ...
1
vote
1answer
557 views

What is a minimum bottleneck spanning tree ?

A minimum bottleneck spanning tree of a weighted graph G is a spanning tree of G such that minimizes the maximum weight of any edge in the spanning tree. A MBST is not necessarily a MST(minimum ...
1
vote
1answer
150 views

Minimum of number of minimum spanning trees(MST) of complete graph

What's minimum number of minimum spanning trees(MST) of complete graph with N vertex?
1
vote
3answers
138 views

Basic Questions about Minimum Spanning Tree

This is not a homework. I am trying to do exercises from a textbook to understand MST (minimum spanning tree). Suppose I have a cycle C in a weighted undirected graph G. As I understand, the ...
3
votes
2answers
1k views

How to find total number of minimum spanning trees in a graph?

I dont want to find all the minimum spanning trees only how many of them are there, here is the method i considered: Find one minimum spanning tree using prim's or kruskal's algorithm and the find ...
1
vote
1answer
58 views

What edges are not in any MST

This is a homework question. I do not want the solution - I'm offering the solution I've been thinking of and wish to know whether is it good or why is it flawed. My motivation is to find what edges ...
2
votes
0answers
72 views

Forming Disjoint-Sets of nodes of MST

I have been N nodes and N-1 edges,basically undirected acyclic MST. I want to basically count number of disjoint set of nodes. Two nodes belong to set if they have same parent and and degree of nodes ...
2
votes
1answer
191 views

Boruvka algorithm parallel implementation CUDA

I'm trying to implement Boruvka's algorithm for Minimum Spanning Trees in CUDA. I understand the basic logic, but I'm having trouble implementing it. The algorithm is: Initialize Graph G(V,E) ...
0
votes
0answers
193 views

Trouble with a heap Priority Queue and Minimum weighted spanning tree [closed]

I'm working on an assignment which requires me to have a minimum spanning weighted tree to print out using a priority queue. My priority queue is fine (kinda), but it appears to be adding in ...
5
votes
2answers
586 views

An algorithm to see if there are exactly two MSTs in a graph?

I have an undirected connected graph G. I wish to find an algorithm that return true if there are at least 2 MSTs. What if I want to see if there are exactly 2 MSTs?
2
votes
1answer
133 views

How to update MST after deleting an edge from the graph?

I have a graph represented with adjacency lists and his MST represented by parent array. My problem is that I need to delete an edge from the graph and update parent array. I've already manage to do ...
2
votes
1answer
696 views

Prim's Algorithm input parameter (values) in Python

I have looked at the following prim's algorithm (in order to create a minimum spanning tree) and I am unsure as to what the input value s in the following code is, I think the G of course would be the ...
6
votes
1answer
434 views

Complexity of Prims Algorithm using Priority Queue?

I am using an adjacency matrix, priority queue is the data structure. By my calculation, complexity is V^3 log V: While loop: V Checking adjacent Vertices: V Checking the queue if the entry is ...
1
vote
1answer
188 views

How to check a Minimum spanning tree

How can I check in linear time O(n) if the given tree is a MST?
2
votes
1answer
90 views

looking for similar known problems

I am trying to prove the computer complexity of this optimization problem: Given a connected graph G = (V, E) and a set S ⊊ V. Find a connected subgraph G'= (V', E ') that: Min f(G') Min |V'| ...
0
votes
1answer
2k views

Prim's and Kruskal's algorithm

Prim's and Kruskal's algorithm both produce the minimum spanning tree. According to the cut property, the total cost of the tree will be the same for these algorithms, but is it possible that these ...
0
votes
1answer
356 views

Euclidean Minimum Spanning Tree Without Triangulation

I was looking through some text about finding the EMST (Euclidean MST) using Delaunay triangulation technique, but also read somewhere that the EMST can be found through a sweep line algorithm. Since ...
0
votes
2answers
395 views

Minimum spanning tree and shortest path

I was given a problem that said: given a connected directed graph with integer weights (both positive and negative), develop an algorithm that finds the shortest path between two vertices. I thought ...

1 2 3 4