Exercise: Modified Prim's Algorithm
Learn to implement a modified version of Prim's algorithm.
We'll cover the following...
We saw how the original Prim's algorithm works and implemented a Simplified Prim's algorithm and a True Prim's algorithm. There are many other variations available, though. Let's implement one.
Problem statement
Implement a modified Prim's algorithm.
The algorithm ...