edited by
1,138 views

2 Answers

1 votes
1 votes
Let a disconnected graph. In disconnected graph, minimumcostspanningtree is not possible. Given statement is wrong.
0 votes
0 votes

Yes True. If there are n vertices, then minimum number of edges in MST is (n-1) , As MST must be connected with minimum weight edges

If avg weight of 1 edge is Aavg

then, for (n-1) edges weight (n-1)Aavg

Related questions

410
views
1 answers
1 votes
radha gogia asked Feb 20, 2016
410 views
I tried by taking n=2 , and took points (1,1) ,(1,2) ,(2,2),(2,1) and I got the minimum weight to be 3 , which is n+1 but according to answer it is n-1
560
views
0 answers
0 votes
Lakshman Bhaiya asked Nov 10, 2018
560 views
Which algorithm will be implemented on the weighted graph in which the edges are uniformly distributed over the half-open interval $[0,1)$ ... $D)$ None of these
3.2k
views
1 answers
4 votes
srestha asked Apr 30, 2018
3,215 views
1) Kruskal Algorithm2) Prims Algorithm3) Dijkstra Algorithm4) Bellman Ford Algorithm5) Floyd Warshall AlgorithmAmong these which one works for onlyi) Positive edge weightii) Negative edge weightiii) Negative weight cycle
2.2k
views
2 answers
1 votes