mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-04-22 21:39:36 +00:00
[PR #1127] [CLOSED] Written code for prim's algorithm with min heapify technique #1697
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/1127
Author: @DeepanshuDabas03
Created: 10/30/2022
Status: ❌ Closed
Base:
master← Head:master📝 Commits (2)
a6e7031prim's algorithm in c with pseudo code074f3bfprims algorithm in c fixed version📊 Changes
1 file changed (+229 additions, -0 deletions)
View changed files
➕
data_structures/graphs/prim.c(+229 -0)📄 Description
Implementation of the prim's algorithm with pseudo-code is added for graphs.
Driver Main function is also set with the test case
InputCopy
5 6
1 2 1
2 3 5
2 4 1
3 4 8
5 1 7
5 4 1
outputCopy
8
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.