摘要: (1)今日安排邻接表存储实现有向网构建题目要求:以邻接表的存储方式,创建一个有向网,顶点为字符型。源代码如下: #include<iostream> #include<cstdio> using namespace std; const int N=1010; struct arc{ int e; 阅读全文
posted @ 2021-11-24 16:46 今天又双叒叕在敲代码 阅读(30) 评论(0) 推荐(0) 编辑