Showing posts with label minimum spanning tree. Show all posts
Showing posts with label minimum spanning tree. Show all posts

Monday, May 2, 2011

Data Structure minimum spanning tree

/*pgm to find minimum spanning tree using kruskal's algorithm*/
#include<stdio.h>
#define INF 1000
char vertex[10];
int wght[10][10];