2018年5月23日

深度优先遍历图(DFS)

摘要: #include <stdlib.h> #include <stdio.h> #define MAX_NUM 10 //最多可存储的顶点数 const int NUL = -1; const int FALSE = -1; const int TRUE = 0; int visited[MAX_NU 阅读全文

posted @ 2018-05-23 23:16 MrRS 阅读(226) 评论(0) 推荐(0) 编辑

导航