prim.cpp

来自「常用算法与数据结构原代码」· C++ 代码 · 共 30 行

CPP
30
字号

// test Prim's min cost spanning tree algorithm

#include <iostream.h>
#include "lwgraph.h"

void main(void)
{
   LinkedWGraph<int> G(7);
   EdgeNode<int> t[7];
   int n = 7;
   int e, u, v, w;
   cout << "enter number of edges of 7 vertex graph" << endl;
   cin >> e;
   // get edges
   for (int i = 1; i <= e; i++) {
      cout << "enter edge " << i << endl;
      cin >> u >> v >> w;
      G.Add(u,v,w);}

   cout << "The input graph is" << endl;
   G.Output();

   if (G.Prim(t)) {
      cout << "The min spanning tree edges are" << endl;
      for (int i=0; i<n-1; i++)
         cout << t[i] << endl;}
   else  cout << "The graph is not connected" << endl;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?