in Algorithms retagged by
2,946 views
0 votes
0 votes
in Algorithms retagged by
2.9k views

1 Answer

1 vote
1 vote
Edge disjoint spanning trees are spanning trees that do not have any edges in common.

Kn has n(n-1)/2 edges ,and each spanning has n-1 edges so there are at most Floor[n/2] edges disjoint spanning tree.

4 Comments

Why floor[n/2] and not ceil[n/2]..can you please explain in detail
0
0
Consider K3 graph it has 1 edge disjoint spanning tree if u will take ceil then u will get 2 edge disjoint spanning tree which is not possible.
0
0
but in k5

3 edges are disjoint spanning
0
0

no for K5 you have 2 disjoint edge spanning tree...


0
0

Related questions