dfstree.cpp

来自「数据结构c++语言描述 Borland C++实现」· C++ 代码 · 共 28 行

CPP
28
字号


// find a depth-first spanning tree

#include<iostream.h>
#include "lg2.h"
#include "edge.h"

void main(void)
{
   LinkedGraph G(0);
   Edge DT[100];

   // try three graphs
   for (int j = 1; j <= 3; j++) {
      G.Input();
      cout << "The input graph is" << endl;
      G.Output();

      if (G.DSpanningTree(j,DT)) {
         cout << "The depth-first spanning tree edges are" << endl;
         for (int i = 0; i <= G.Vertices()-2; i++)
             cout << DT[i] << ' ' ;
             cout << endl;}
      else cout << "The graph has no spanning tree" << endl;
      }
}

⌨️ 快捷键说明

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