摘要: #include "stdafx.h"#include #include //------------------------------------------------使用顺序表建立的队列结构------------------------------int const maxsize=20;typedef struct cycqueue{ int data[maxsize]; ... 阅读全文
posted @ 2007-07-28 11:29 吴东雷 阅读(481) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include #include //邻接表,存储P114的5-10#define vnum 8//单链表定义typedef struct arcnode{ int adjvex; //与其相连的下个结点的编号 struct arcnode * nextarc;... 阅读全文
posted @ 2007-07-28 11:28 吴东雷 阅读(659) 评论(0) 推荐(0) 编辑