求有向图的强连通分支(邻接表存储)C++实现

// 强连通分支(邻接表存储).cpp : Defines the entry point for the console application. //通过二次利用深度优先搜索访问节点,每次的深度优先搜索操作不同 #include "stdafx.h" #include<iostream> #define MAX 100 using namespace std; //深度搜索访问节点层次标志枚举
相关文章
相关标签/搜索