Tagged Questions
The spanning-tree tag has no wiki summary.
3
votes
2answers
265 views
spanning tree with exactly k colored edges
I have a connected, undirected graph with edges that are each either black or white, and an integer k.
I'm trying to write an algorithm that tells whether or not a spanning tree exists with exactly k ...
2
votes
0answers
75 views
Spanning tree that minimizes a dynamic 'metric'
Let us have a graph. When we remove an edge, 2 'cars' are created, one from each vertice of the edge. when these 2 cars meet they stop. The problem is to create a spanning tree so that the sum of the ...
2
votes
2answers
124 views
converting a unbalanced tree to a spanning tree [closed]
How to convert an unbalanced tree into a (balanced) spanning tree? Suppose I have a tree (with different (not necessarily distinct) number of children at different nodes). I want to manipulate the ...
2
votes
1answer
126 views
How to form a cluster and choose cluster header on this environment?
I'm new to the whole distributed system world. I need help to how to form a cluster on this environment and also decide which one is the CH(cluster header). I want use spanning tree to choose the ...
1
vote
1answer
67 views
how does floyds algorthm work and what is K?
I am having a hard time understanding Floyds algorithm i know how it works
as in i know how to do it by hand but i need to understand it through a computer
perceptive
This is what i am given
This ...
1
vote
1answer
19 views
Finding a Spanning Tree with a Target Cost
I'm quite stumped on this one. New to posting, so forgive me if this is a silly question.
Say we are given a graph G=(V,E) with weighted edges. I would like to create spanning tree of G with a ...
1
vote
2answers
712 views
0
votes
1answer
46 views
How to make the result of a BFS spanning tree is shown in preorder
I'm trying to implement a BFS algorithm for homework, I find the spanning tree algorithm with BFS, the problem is that I require that the resulting spanning tree is shown in preorder. Here's my ...
0
votes
1answer
37 views
How to indicate preorder of a spanning tree using the algorithm BFS
I'm doing an implementation of the BFS algorithm in c++ to find a spanning tree, the output for a spanning tree should be shown in preorder, but I have a doubt in the implementation, how I can build ...
0
votes
0answers
15 views
Edge matrix and spanning tree
I am currently learning about trees and I have encountered this question. I am presented with a figure
I am supposed to find the adjacency matrix, edge matrix and draw the spanning tree. Now the ...
0
votes
1answer
39 views
Find all spanning trees of a directed weighted graph
I have found this paper so far. Is it outdated? Are there any faster and better implementations?
By the way, Wikipedia says that there can be n^n-2 spanning trees in a undirected graph. How many ...
0
votes
1answer
19 views
Co-spanning tree
Does anyone know that what is co spanning tree. If there are some good answers then it would be really good to have an example also.
0
votes
1answer
39 views
Give me an example of why IP tries to route on a spanning tree
I've been watching a talk given by Van Jacobson in which he casually claims that IP tries to route on a spanning tree, as not doing so results in loops which can quickly bring down a network. He then ...
0
votes
1answer
62 views
cisco spanning-tree [closed]
I have 2 nexus 5k with 1 portchannel (8x 1Gb) on it to ISP.
Now I want to test portchannel with less links (6 for example).
Does spanning-tree will rebuild if I shutdown 2 links on working ...
0
votes
4answers
165 views
C: How deallocate memory for spanning tree?
I have a n-ary tree structure with only parents and children. The spantree itself holds only one node, the root. Then there are created nodes which are linked with other nodes or the root. Each ...
0
votes
2answers
148 views
Minimum cost broadcast routing
Is there any method where we can get a minimum cost broadcast routing scheme without using the spanning tree algorithm?
Any references to guide me on this will be of great use to me.