comparator for sorting vector of edges structure
| 438 | |
| 439 | //comparator for sorting vector of edges structure |
| 440 | bool comp(node a,node b){ |
| 441 | return a.wt<b.wt; |
| 442 | } |
| 443 | |
| 444 | //function for union of two nodes in the set kruskalsalgo |
| 445 | void unionn(int u,int v,vector<int>&parent,vector<int>&rank){ |
nothing calls this directly
no outgoing calls
no test coverage detected