How to use Prim's algorithm in C++
Title: Use of Prim algorithm and code examples in C
Introduction: Prim algorithm is a commonly used minimum spanning tree algorithm, mainly used to solve graph theory problems The minimum spanning tree problem. In C, Prim's algorithm can be used effectively with proper data structures and algorithm implementation. This article will introduce how to use Prim's algorithm in C and provide specific code examples.
1. Introduction to Prim algorithm
The Prim algorithm is a greedy algorithm that starts from a vertex and gradually expands the vertex set of the minimum spanning tree until all vertices are included. It builds a minimum spanning tree by continuously selecting the edge with the smallest weight connected to the current set.
2. Implementation steps of Prim algorithm
- Create an empty minimum spanning tree set and a priority queue to store edge weights and connected vertices.
- Randomly select a vertex as the starting vertex and add it to the minimum spanning tree set.
- Add the edge connected to the starting vertex to the priority queue.
- Repeat the following steps until the minimum spanning tree contains all vertices:
a. Remove the edge with the smallest weight and the connected vertices from the priority queue.
b. If the vertex is already in the minimum spanning tree set, ignore the edge.
c. Otherwise, add the vertex to the minimum spanning tree set and add the edges connected to the vertex to the priority queue. - Output the minimum spanning tree set.
3. C code example
The following is a code example using C to implement Prim's algorithm, which uses an adjacency matrix to represent the graph:
#include<iostream> #include<queue> #include<vector> #include<algorithm> using namespace std; const int MAX = 100; const int INF = 9999; vector<vector<int>> graph(MAX, vector<int>(MAX, INF)); void prim(int start, int n) { vector<int> key(n, INF); // 存储每个顶点到最小生成树的最小权重 vector<bool> visited(n, false); // 标记顶点是否已经加入最小生成树 priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> pq; // 优先队列,按权重升序排列 key[start] = 0; // 起始顶点到自身的权重置为0 pq.push(make_pair(0, start)); while (!pq.empty()) { int u = pq.top().second; pq.pop(); visited[u] = true; for (int v = 0; v < n; v++) { if (graph[u][v] != INF && !visited[v] && graph[u][v] < key[v]) { key[v] = graph[u][v]; pq.push(make_pair(graph[u][v], v)); } } } // 输出最小生成树的边 for (int i = 1; i < n; i++) { cout << "Edge: " << i << " - " << key[i] << endl; } } int main() { int n, e; cout << "Enter the number of vertices: "; cin >> n; cout << "Enter the number of edges: "; cin >> e; cout << "Enter the edges and weights: " << endl; int u, v, w; for (int i = 0; i < e; i++) { cin >> u >> v >> w; graph[u][v] = w; graph[v][u] = w; } int start; cout << "Enter the starting vertex: "; cin >> start; cout << "Minimum Spanning Tree edges: " << endl; prim(start, n); return 0; }
4. Summary
This article Introduces how to use Prim's algorithm in C and provides a specific code example. Minimum spanning trees can be computed efficiently by using appropriate data structures and algorithm implementations. I hope this article will be helpful to you when using Prim's algorithm to solve the minimum spanning tree problem.
The above is the detailed content of How to use Prim's algorithm in C++. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Title: Use of Prim algorithm and code examples in C++ Introduction: Prim algorithm is a commonly used minimum spanning tree algorithm, mainly used to solve the minimum spanning tree problem in graph theory. In C++, Prim's algorithm can be used effectively through reasonable data structures and algorithm implementation. This article will introduce how to use Prim's algorithm in C++ and provide specific code examples. 1. Introduction to Prim algorithm Prim algorithm is a greedy algorithm. It starts from a vertex and gradually expands the vertex set of the minimum spanning tree until it contains

In graph theory, finding the minimum spanning tree (MST) of a connected weighted graph is a common problem. MST is a subset of graph edges that connects all vertices and minimizes the total edge weight. An efficient algorithm to solve this problem is Boruvka algorithm. Syntax structEdge{intsrc,dest,weight;};//Definethestructuretorepresentasubsetforunion-findstructSubset{intparent,rank;};Algorithm Now, let us outline the steps involved in finding the minimum spanning tree in the Boruvka algorithm − Initialize the MST as an empty set. for each vertex

How to use Java to implement a topological sorting algorithm for graphs Introduction: Graph is a very common data structure and has a wide range of applications in the field of computer science. The topological sorting algorithm is a classic algorithm in graph theory that can sort a directed acyclic graph (DAG) to determine the dependencies between nodes in the graph. This article will introduce how to use the Java programming language to implement the topological sorting algorithm of the graph, and come with specific Java code examples. 1. Define the data structure of the graph. Before implementing the topological sorting algorithm, we first need to define

How to use Java to implement the Hamiltonian cycle algorithm for graphs. A Hamiltonian cycle is a computational problem in graph theory, which is to find a closed path containing all vertices in a given graph. In this article, we will introduce in detail how to implement the Hamiltonian cycle algorithm using the Java programming language and provide corresponding code examples. Graph Representation First, we need to represent the graph using an appropriate data structure. In Java, we can represent graphs using adjacency matrices or adjacency linked lists. Here we choose to use an adjacency matrix to represent the graph. Define a file called

1. Double-click to open the test document. 2. After clicking the job to create the first ppt document, click Insert--Picture--From File in the menu. 3. Select the file we inserted and click Insert. 4. Insert another one in the same way, and drag and adjust the two pictures to the appropriate position. 5. Select two pictures at the same time, right-click - Group - Group, so that the two pictures become one. 6. Select the merged graphic, right-click - Customize animation. 7. Click Add Effect, select an effect, and click OK. When you look at the PPT, you will find that the two pictures are moving together.

Understanding Trees and Graphs in Java: Exploring Applications and Implementations of Nonlinear Data Structures Introduction In computer science, data structures are the way data is stored, organized, and managed in computers. Data structures can be divided into linear data structures and non-linear data structures. Trees and graphs are the two most commonly used types of nonlinear data structures. This article will focus on the concepts, applications and implementation of trees and graphs in Java, and give specific code examples. The Concept and Application of Tree A tree is an abstract data type, a collection of nodes and edges. Each node of the tree contains a number

How to use greedy algorithm to achieve the optimal solution of minimum spanning tree problem in PHP? The minimum spanning tree (MinimumSpanningTree) problem is to find a subtree in a connected undirected graph such that this subtree contains all the vertices in the graph and the sum of the weights of all edges is the smallest. The greedy algorithm is one of the common methods to solve this problem. It gradually finds the global optimal solution by selecting the current optimal solution each time. First, we need to define a graph class to store the structure of the graph and the weights of the edges. The following is an example of

Detailed explanation of the minimum spanning tree algorithm in PHP Minimum Spanning Tree (MST for short) is an important concept in graph theory, used to solve the problem of selecting the minimum weight edge of a connected graph. In the PHP language, we can implement this function through some classic minimum spanning tree algorithms. This article will introduce in detail two commonly used minimum spanning tree algorithms: Prim's algorithm and Kruskal's algorithm, and give corresponding PHP code examples. 1. Prim algorithm Prim algorithm is a
