摘要: #include "stdafx.h"#include #include int const vnum=6;//单链表定义typedef struct arcnode{ int adjvex; //与其相连的下个结点的编号 struct arcnode * nextarc; ... 阅读全文
posted @ 2007-07-30 13:46 吴东雷 阅读(270) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include #include int const vnum=6;int const MAX=32767;typedef struct graph{ int vexs[vnum]; //顶点信息 int arcs[vnum][vnum]; ... 阅读全文
posted @ 2007-07-30 10:15 吴东雷 阅读(381) 评论(0) 推荐(0) 编辑