Skip to main content

Prim's Algorithm

 

Prim's Algorithm is a greedy algorithm that finds a minimum spanning tree for weighted undirected graphs.

Spanning Trees:

Retain a minimal set of edges so that graphs remain connected. A tree is a minimally connected graph. Adding an edge to a tree creates a loop and removing an edge disconnects the graph.

In this graph, the red edges form a Spanning tree

Minimum Cost Spanning Tree:
  1. Add the cost of all the edges in the Tree
  2. Amount different spanning trees, choose the one with a minimum one
Finding Minimum Cost Spanning Trees using Prim's Algorithm

Strategy:
  1. Incrementally grow the minimum cost spanning tree
  2. Start with the smallest weight edge overall
  3. Extend the current tree by adding the smallest edge from the vertex of the tree to a vertex not yet reached
For example, consider:


Start with the smallest edge which is between Vertex 1 and Vertex 3 in the above given example.


After this, we can extend the tree by choosing edges that are connected with Vertex 1 and Vertex 3. This means we have the option of extending the tree by choosing the edge-
  • Between Vertex 3 and Vertex 0
  • Between Vertex 1 and Vertex 0
  • Between Vertex 1 and Vertex 2
  • Between Vertex 3 and Vertex 4
We extend the tree from the edge between Vertex 1 and Vertex 0 because that is the smallest edge out of the four.


Notice that the smallest edge is of weight 18 which connects Vertex 0 and Vertex 3. However, if we add this edge, it will form a cycle and thus we extend the tree by choosing the edge between Vertex 1 and Vertex 2, which is the second smallest edge.

Finally, we select the edge between Vertex 2 and Vertex 4 which has a weight of 8. Thus, this is how we found a Minimum Spanning Tree using Prim's Algorithm


Comments

Popular posts from this blog

Summer Research Internship Program (SRIP) 2021 at IIT Gandhinagar

  The Summer Research Internship Program, also known as SRIP, is conducted by the Indian Institute of Technology Gandhinagar (IITGn), one of the most prestigious institutions of India. This internship is highly sought after by students because of the learning and networking opportunities offered by this Research Internship. In this blog, I will be walking you through my experience in SRIP 2021. Before proceeding, I just want to clarify that it is highly recommended to check the website of SRIP for eligibility, duration, stipend, projects available, etc. Basic details of SRIP at IITGn Duration: 8 Weeks Eligibility: Students pursuing Bachelor's and Master's degree at any prominent institute in India. First-year students, as well as Final year students, can apply. Stipend: 2000 INR per Week Note- It is strongly recommended to the reader to check the SRIP website thoroughly because these details might change. I am a student pursuing B.Sc. (Hons.) Biochemistry from Sri Venkateswara ...

System Dynamics

I completed a Summer Research Internship at the Systems Realization Laboratory at the University of Oklahoma under the mentorship of Dr. Farrokh Mistree (Ph.D. in Engineering from UC Berkeley) and Dr. Janet K. Allen (Ph.D. in Biophysics from UC Berkeley).  Introduction Despite all the analytical prowess that we have achieved in this age, the problems are getting more and more difficult to solve. It’s not just the problems that are getting harder, but the dilemmas of which problems to solve are getting complex day by day. Our world has never been so interconnected as it is today. In this intricate system where the issues are interlinked, solving an issue might solve another issue but it would also have a negative impact on another issue. This is why we need Systems dynamics. Just identifying and solving issues is not enough, but we need to also identify and probe the dilemmas present in the system and make informed decisions regarding which dilemmas should be addressed so ...