mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[PR #1076] [CLOSED] Create krushkals.c #1635
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/TheAlgorithms/C/pull/1076
Author: @ankit-akash
Created: 10/18/2022
Status: ❌ Closed
Base:
master← Head:patch-1📝 Commits (1)
66d00a7Create krushkals.c📊 Changes
1 file changed (+78 additions, -0 deletions)
View changed files
➕
greedy_approach/krushkals.c(+78 -0)📄 Description
Description of Change
-C Programming Implementation of Kruskal’s Algorithm
References
https://www.geeksforgeeks.org/kruskals-minimum-spanning-tree-algorithm-greedy-algo-2/
Checklist
Notes:
Kruskal’s algorithm is a greedy algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. It finds a subset of the edges that forms a tree that includes every vertex, where the total weight of all the edges in the tree is minimized.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.