1. 首页
  2. 编程语言
  3. C#
  4. 张乃孝版的数据结构课本课件讲解代码prim.c.doc

张乃孝版的数据结构课本课件讲解代码prim.c.doc

上传者: 2020-12-12 10:41:45上传 DOC文件 24.5KB 热度 4次
/* prim.c */ /* Prim算法*/ typedef char VexType; typedef float AdjType; typedef struct { int n; /* 图的顶点个数 */ VexType *vexs; /* 顶点信息 */ AdjType *arcs[]; /* 边信息 */ }GraphMatrix; typedef struct{ int start_
下载地址
用户评论