Implementation of Kruskal Algorithm in C/C++ : For Disjoint Graphs the Kruskal Algorithm Gives the Minimum Spanning Tree for each of the disjoint sets/graphs considered individually. NOTE : ALL OUTPUT IS DIRECTED TO A FILE kruskalalgo.txt ------------------------- # include # include void Make_set(int set[]); int Find_set(int set[],int x); void Link(int set[],int x1,int x2); void Display_set(int set[]); void Make_set(int set[]) { int ctr1; for(ctr1=1;ctr1<=set[0];ctr1++) set[ctr1]=ctr1; }; int Find_set(int set[],int x) { return set[x]; } void Link(int set[],int x1,int x2) { int ctr1,ctr2,prevVal; if(set[x1]==set[x2]) return ; if(set[x1]1 && temp.weight