数据结构
文章平均质量分 79
cccshan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
拓扑排序
#include #include #include "Stack.h" #define Status int #define MAXVEX 100 #define OK 0 #define ERROR -1 using namespace std; typedef struct EdgeNode /*边结点*/ { int adjvex;//邻接点域,存储该原创 2017-05-04 15:02:54 · 267 阅读 · 0 评论 -
普里姆算法
#include #include #define Max_vertex_num 100 #define MAXVEX 100 #define INFINITY 999 using namespace std; typedef struct { //图结构 char vexs[Max_vertex_num] ; //顶点数组 int原创 2017-05-04 15:03:58 · 656 阅读 · 0 评论
分享