Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:jeanpaul:chapterfour_sectionv [2012/03/01 01:30] – [Designing the algorithm] mugabej | courses:cs211:winter2012:journals:jeanpaul:chapterfour_sectionv [2012/03/01 02:15] (current) – [Implementing Prim's Algorithm] mugabej | ||
---|---|---|---|
Line 40: | Line 40: | ||
* The **Cut Property **: | * The **Cut Property **: | ||
- | * Assume all edge costs are distinct | + | * Assume all edge costs are distinct |
* Now, let S be any subset of nodes that is neither empty nor equal to V | * Now, let S be any subset of nodes that is neither empty nor equal to V | ||
* And let edge e = (v,w) be the minimum cost edge with one end in S and the other in V-S | * And let edge e = (v,w) be the minimum cost edge with one end in S and the other in V-S | ||
* Then an spanning tree contains the edge e | * Then an spanning tree contains the edge e | ||
* This straight-out-of-the-book statement is the cut property of the Minimum Spanning Tree.Proof: | * This straight-out-of-the-book statement is the cut property of the Minimum Spanning Tree.Proof: | ||
+ | * So, we can insert nodes in the MST as long as we don't create cycle when doing so. | ||
+ | * Prim's and Kruskal' | ||
+ | * The **Cycle property**: | ||
+ | * Let C be any cycle, and let f be the maximum cost edge belonging to C | ||
+ | * Then MST does not contain f. | ||
+ | * So, we can delete a node from the MST as long as we don't disconnect our MST | ||
+ | * The Reverse-Delete Algorithm produces a Minimum Spanning Tree of the graph G | ||
+ | ==== Implementing Prim's Algorithm ==== | ||
+ | * We need to decide which node //v// to add next to the set S at each time | ||
+ | * We maintain the attachment costs a(//v//) = min< | ||
+ | * Keep the nodes in a Priority Queue(PQ) with a(//v//), the attachment costs, as the keys | ||
+ | * We use ** ExtractMin ** to extract the node //v// to add to S | ||
+ | * We use the ** ChangeKey ** operation to update the attachment costs | ||
+ | * The ** ExtractMin ** operation is performed n-1 times | ||
+ | * The ** ChangeKey ** operation is done at most once for each edge | ||
+ | * Thus using a PQ, we can implement Prim's algorithm in O(mlogn) time\\ | ||
+ | \\ | ||
+ | Implementation from our class' lecture:\\ | ||
+ | >>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> | ||
+ | |||
+ | \\ | ||
+ | There are several applications of the Minimum Spanning Tree algorithms, many can be found in the book.\\ | ||
+ | This was by far the most interesting reading of the chapter!I give it a 9/10. |