This project demonstrates an implementation of Prim's algorithm for finding the Minimum Spanning Tree (MST) in both sequential and parallel versions using OpenMP for performance optimization. The ...
This Python project generates a Minimum Spanning Tree (MST) from a graph represented as an adjacency matrix in CSV format, using Prim's Algorithm. It logs each selected edge and the total weight of ...