VOOZH about

URL: https://www.geeksforgeeks.org/dsa/reverse-delete-algorithm-minimum-spanning-tree/

⇱ Reverse Delete Algorithm for Minimum Spanning Tree - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Reverse Delete Algorithm for Minimum Spanning Tree

Last Updated : 4 Aug, 2023

Reverse Delete algorithm is closely related to Kruskal's algorithm. In Kruskal's algorithm what we do is : Sort edges by increasing order of their weights. After sorting, we one by one pick edges in increasing order. We include current picked edge if by including this in spanning tree not form any cycle until there are V-1 edges in spanning tree, where V = number of vertices.

In Reverse Delete algorithm, we sort all edges in decreasing order of their weights. After sorting, we one by one pick edges in decreasing order. We include current picked edge if excluding current edge causes disconnection in current graph. The main idea is delete edge if its deletion does not lead to disconnection of graph.

The Algorithm :

  1. Sort all edges of graph in non-increasing order of edge weights.
  2. Initialize MST as original graph and remove extra edges using step 3.
  3. Pick highest weight edge from remaining edges and check if deleting the edge disconnects the graph   or not.
     If disconnects, then we don't delete the edge.
    Else we delete the edge and continue. 

Illustration:

Let us understand with the following example:

👁 Image


If we delete highest weight edge of weight 14, graph doesn't become disconnected, so we remove it. 

👁 reversedelete2


Next we delete 11 as deleting it doesn't disconnect the graph. 

👁 reversedelete3


Next we delete 10 as deleting it doesn't disconnect the graph. 

👁 reversedelete4


Next is 9. We cannot delete 9 as deleting it causes disconnection. 

👁 reversedelete5


We continue this way and following edges remain in final MST. 

Edges in MST
(3, 4)
(0, 7)
(2, 3)
(2, 5)
(0, 1)
(5, 6)
(2, 8)
(6, 7)

Note : In case of same weight edges, we can pick any edge of the same weight edges.

Implementation:


Output
Edges in MST
(3, 4) 
(0, 7) 
(2, 3) 
(2, 5) 
(0, 1) 
(5, 6) 
(2, 8) 
(6, 7) 
Total weight of MST is 37

Time complexity: O((E*(V+E)) + E log E) where E is the number of edges.

Space complexity: O(V+E) where V is the number of vertices and E is the number of edges. We are using adjacency list to store the graph, so we need space proportional to O(V+E).

Notes : 

  1. The above implementation is a simple/naive implementation of Reverse Delete algorithm and can be optimized to O(E log V (log log V)3) [Source : Wiki]. But this optimized time complexity is still less than Prim and Kruskal Algorithms for MST.
  2. The above implementation modifies the original graph. We can create a copy of the graph if original graph must be retained.
Comment
Article Tags:
Article Tags: