Tag Archives for Data Structure and Algorithms
Kruskals Algorithm
PROGRAM FOR KRUSKAL ALGORITHM #include<stdio.h> struct edge { int vs, vd, wt, used; } s[ 20 ]; int g[ 20 ][ 20 ]; void kruskal( int n ); main() { int n, … Continue reading
PROGRAM FOR KRUSKAL ALGORITHM #include<stdio.h> struct edge { int vs, vd, wt, used; } s[ 20 ]; int g[ 20 ][ 20 ]; void kruskal( int n ); main() { int n, … Continue reading