Add-Prims's Algorithm for MST#248
Merged
siriak merged 5 commits intoTheAlgorithms:masterfrom Oct 24, 2025
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR adds a comprehensive implementation of Prim's algorithm for computing the Minimum Spanning Tree (MST) of weighted, undirected graphs in R. The implementation includes input validation, helper functions, and multiple examples demonstrating various use cases.
- Introduces
prim_mst()function with O(V²) adjacency matrix implementation - Adds utility functions for MST visualization and graph construction from edge lists
- Provides five detailed examples covering basic graphs, edge lists, disconnected graphs, and complete graphs
Contributor
Author
|
✅ Updated Prim’s MST R implementation |
Contributor
Author
|
@siriak please have a look |
siriak
previously approved these changes
Oct 24, 2025
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
siriak
approved these changes
Oct 24, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR: Prim's Algorithm for Minimum Spanning Tree (MST)
This PR introduces a fully documented implementation of Prim's Algorithm in R, designed to compute the Minimum Spanning Tree (MST) of a connected, weighted, undirected graph. The algorithm efficiently grows the MST by repeatedly adding the minimum-weight edge connecting the already included vertices to a new vertex.
Overview
Prim's algorithm operates as follows:
The implementation supports both adjacency matrix and edge list representations, includes input validation, and provides formatted MST output.
Features
Complexity
Applications
Demonstration
Run the included examples to see Prim's Algorithm in action: