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

18. August 2009 by Jishnu
Categories: C Programming | Tags: | Leave a comment

← Older posts