About 218,000 results
Open links in new tab
  1. Kruskal's algorithm - Wikipedia

    Kruskal's algorithm[1] finds a minimum spanning forest of an undirected edge-weighted graph. If the graph is connected, it finds a minimum spanning tree. It is a greedy algorithm that in each step adds …

  2. Kruskal’s Minimum Spanning Tree (MST) Algorithm

    Aug 26, 2025 · In Kruskal's algorithm, we sort all edges of the given graph in increasing order. Then it keeps on adding new edges and nodes in the MST if the newly added edge does not form a cycle. It …

  3. Kruskal's Algorithm - Programiz

    Kruskal's algorithm is a minimum spanning tree algorithm that takes a graph as input and finds the subset of the edges of that graph.

  4. Kruskal's Algorithm Explained - numberanalytics.com

    May 27, 2025 · Kruskal's Algorithm works by selecting the smallest available edge that connects two disconnected components of the graph. The algorithm starts with an empty graph and gradually adds …

  5. Kruskal's algorithm, minimum spanning trees

    Kruskal's algorithm can be used to find minimum spanning trees of an undirected graph.

  6. Complete Kruskal's Algorithm Guide: MST & Code Examples

    Jan 30, 2025 · Learn Kruskal's Algorithm, its step-by-step process to find Minimum Spanning Trees (MST), and how it optimizes graph problems in real-world applications.

  7. Kruskal’s algorithm is rather simple and what you might come up with by thinking about this problem: at each step, add the smallest edge to a set which does not form a cycle with edges within that set.

  8. Kruskal's Algorithm | Brilliant Math & Science Wiki

    Kruskal's algorithm is a good example of a greedy algorithm, in which we make a series of decisions, each doing what seems best at the time. The local decisions are which edge to add to the spanning …

  9. Joseph Kruskal - Wikipedia

    In statistics, Kruskal's most influential work is his seminal contribution to the formulation of multidimensional scaling. In computer science, his best known work is Kruskal's algorithm for …

  10. Kruskal's Algorithm

    This page goes over Kruskal's Algorithm, a way to find the Minimum Spanning Tree of certain graphs. Below is the pseudocode for the algorithm and an example graph to facilitate understanding.