Reader small image

You're reading from  Swift Data Structure and Algorithms

Product typeBook
Published inNov 2016
Reading LevelIntermediate
PublisherPackt
ISBN-139781785884504
Edition1st Edition
Languages
Tools
Right arrow
Author (1)
Mario Eguiluz Alebicto
Mario Eguiluz Alebicto
author image
Mario Eguiluz Alebicto

Mario Eguiluz Alebicto is a software engineer with over 15 years of experience in development. He started developing software with Java, later switched to Objective-C when the first iPhone delighted the world, and now, he is working with Swift and involved in backend technologies. He loves to code, build exciting projects, and learn new languages and frameworks. Apart from software development, Mario loves to travel, learn new hobbies, practice sports, and considers himself a hardcore gamer, which he has been since he was a child.
Read more about Mario Eguiluz Alebicto

Right arrow

Prim algorithm


It was Robert C. Prim in 1957 who gave his surname to Prim's algorithm, which takes an undirected connected graph and calculates its MST in linear time.

Other algorithms, such as Kruskal and Borûvka, also calculate the MST of a graph, but in these cases the initial graph is a forest, not an undirected connected graph, which is what we are going to try out now.

Let's see how Prim's algorithm works with a real example. Here's a graph G with the following vertices, edges, and weights:

Initial undirected connected graph

Here are the steps to calculate the MST:

  1. Start with an arbitrary vertex of the graph. For clarity, we are going to start with vertex A. Initialize a tree with that vertex:

    Prim Step 1: Start with an arbitrary vertex

  2. For each edge of the selected node, take the edge with the minimum weight, which points to a node that is not visited. In our case, we get the edge from A to C. Then mark C as visited and save that edge as part of the MST:

    Prim Step 2: Select the minimum...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Swift Data Structure and Algorithms
Published in: Nov 2016Publisher: PacktISBN-13: 9781785884504

Author (1)

author image
Mario Eguiluz Alebicto

Mario Eguiluz Alebicto is a software engineer with over 15 years of experience in development. He started developing software with Java, later switched to Objective-C when the first iPhone delighted the world, and now, he is working with Swift and involved in backend technologies. He loves to code, build exciting projects, and learn new languages and frameworks. Apart from software development, Mario loves to travel, learn new hobbies, practice sports, and considers himself a hardcore gamer, which he has been since he was a child.
Read more about Mario Eguiluz Alebicto