摘要: (1)今日安排 邻接表存储实现图的深度优先遍历 题目要求:编写程序,实现由邻接表存储实现图的深度优先搜索遍历的功能。顶点为字符型。 #include<iostream> #include<cstdio> using namespace std; struct edge{ int v; edge* n 阅读全文
posted @ 2021-11-25 23:19 今天又双叒叕在敲代码 阅读(22) 评论(0) 推荐(0) 编辑