About 225,000 results
Open links in new tab
  1. Prim’s Algorithm for Minimum Spanning Tree (MST)

    Aug 29, 2025 · Prim’s algorithm is a Greedy algorithm like Kruskal's algorithm. This algorithm always starts with a single node and moves through several adjacent nodes, in order to …

  2. Prim's algorithm - Wikipedia

    In computer science, Prim's algorithm is a greedy algorithm that finds a minimum spanning tree for a weighted undirected graph. This means it finds a subset of the edges that forms a tree …

  3. Prims Minimal Spanning Tree - Online Tutorials Library

    The algorithm, similar to any shortest path algorithm, begins from a vertex that is set as a root and walks through all the vertices in the graph by determining the least cost adjacent edges.

  4. Minimum Spanning Tree - Prim's Algorithm - Algorithms for …

    Jun 30, 2025 · Thus all the edges we pick in Prim's algorithm have the same weights as the edges of any minimum spanning tree, which means that Prim's algorithm really generates a minimum …

  5. DSA Prim's Algorithm - W3Schools

    Prim's algorithm was invented in 1930 by the Czech mathematician Vojtěch Jarník. The algorithm was then rediscovered by Robert C. Prim in 1957, and also rediscovered by Edsger W. …

  6. Prim’s Algorithm: A Comprehensive Guide to Minimum Spanning …

    Prim’s algorithm, developed by computer scientist Robert C. Prim in 1957, is a greedy algorithm that finds a minimum spanning tree for a weighted, undirected graph.

  7. Prim's Algorithm - Programiz

    Prim's algorithm is a minimum spanning tree algorithm that takes a graph as input and finds the subset of the edges of that graph which form a tree that includes every vertex

  8. Prim's Algorithm (With Visualization and Code Example)

    Oct 3, 2025 · Prim's Algorithm is one of the most elegant solutions to this classic problem, and it's frequently asked about in technical interviews. Whether you're building network infrastructure …

  9. Prim's Algorithm in Python - GeeksforGeeks

    Jul 23, 2025 · Prim's algorithm is a greedy algorithm used to find the Minimum Spanning Tree (MST) of a connected, undirected graph. The MST is a subset of the edges that connects all …

  10. Prim's Algorithm for Minimum Spanning Tree: Detailed …

    Jan 10, 2025 · In this detailed guide, we’ll explore every aspect of Prim’s Algorithm, from its working principles to real-world applications, complete with an implementation in C programming.