Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
198 views

Kruskal's algorithm (sort)

I am reading a representation from a file and storing it in an adjacency list. Then I output the graph in "graphviz format" and perform a MST algorithm on the graph. Finally, I output the MST in ...
3
votes
3answers
370 views

Applications of Kruskal and Prim's algorithms

Could anyone please give some applications of the two algorithms, where and which applications they can be used for?
1
vote
1answer
113 views

C Implementation of Kruskal's algorithm for MST

I was studying Kruskal's algorithm for finding the MST for a given graph and i understand the basic concept that you have to consider all the vertices as a forest initially. After that you have to ...
0
votes
2answers
44 views

Generate number of edges between two nodes

I generated this Minimum Spanning Tree using Kruskal algorithm and I have a hard time generating paths between two nodes. Can someone help me with a pseudo code? I tried using Adjacency List and ...
0
votes
1answer
39 views

Storing Path information in Kruskal's Algorithm

I have generated a minimum spanning tree using Kruskal's algorithm and I wanted to know how to store paths This is my minimum spanning tree Loc1 | Loc2 | Distance 02 | 10 | 2.00 Km 05 | ...
0
votes
1answer
63 views

time efficiency in Kruskal's algorithm using adjacency matrix as data structure

This is the psudacode i used for kruskal algorithm.Data structure I have used is an adjacency matrix. I got the order of growth as n2. I wanna know whether it is correct or not. Kruskal’s Pseudo code ...
0
votes
2answers
95 views

Kruskal C implementation

I have implemented the Kruskal algorithm in C using an adjacency matrix graph representation, the problem is, it keeps popping up segmentation fault error, I've been trying to figure out what is wrong ...
0
votes
0answers
108 views

minimum spanning tree for traveling salesman prblem

I have found Minimum spanning tree using Kruskal algorithm using C and adjacency matrix. Now I want to solve it for traveling salesman problem by doubling the edges and finding euler cycle or finding ...