mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[PR #1077] [CLOSED] Create krushkals.c #1634
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/1077
Author: @ankit-akash
Created: 10/18/2022
Status: ❌ Closed
Base:
master← Head:patch-2📝 Commits (5)
0c15204Create krushkals.cefa8153Update krushkals.c356df65Update krushkals.cfad97c4Update krushkals.cc902fecUpdate krushkals.c📊 Changes
1 file changed (+90 additions, -0 deletions)
View changed files
➕
greedy_approach/krushkals.c(+90 -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.