in Graph Theory edited by
3,013 views
2 votes
2 votes

Consider the given graph

Its Minimum Cost Spanning Tree is ______

 

 

 

in Graph Theory edited by
3.0k views

1 comment

moved by
B. Is ans...

Option A and C is eliminated since not having 1-6 edge...

D is eliminated since it contains edge weight 28 Even we have choice for smaller edge weight...
0
0

1 Answer

1 vote
1 vote

finding MST using Kruskal’s algorithm steps as follow:

1. Sort all the edges in non-decreasing order of their weight.
2. Pick the smallest edge. Check if it forms a cycle with the spanning tree formed so far. If cycle is not formed, include this edge. Else, discard it.
3. continue step 2 until we have (V-1) edges in the spanning tree.

 

Answer:

Related questions

Quick search syntax
tags tag:apple
author user:martin
title title:apple
content content:apple
exclude -tag:apple
force match +apple
views views:100
score score:10
answers answers:2
is accepted isaccepted:true
is closed isclosed:true