1. 首页
  2. 课程学习
  3. C++/C
  4. 数据结构_图的基本运算代码

数据结构_图的基本运算代码

上传者: 2018-12-25 15:59:21上传 DOC文件 74KB 热度 36次
#include"MGraph.h"#define INFTY 1000templatestruct ENode{ ENode() {nextArc=NULL;} ENode(int vertex,T weight,ENode *next) { adjVex=vertex; w=weight; nextArc=next; } int adjVex; T w; ENode* nextArc;};
下载地址
用户评论
码姐姐匿名网友 2018-12-25 15:59:21

非常好的资料,能帮助我。

码姐姐匿名网友 2018-12-25 15:59:21

很好的学习资料,赞一个

码姐姐匿名网友 2018-12-25 15:59:21

还不错,没有错误