摘要: #include"stdio.h"#include"stdlib.h"#define MAX_VEXTEX_NUM 20 //定义顶点的最大值#define M 20#define STACK_INIT_SIZE 100 //定义栈的大小 100#define STACKINCREMENT 10 //定义栈的增量 10#define OK 1#define ERROR 0typedef int ElemType; //定义栈顶元素类型typedef struct ArcNode{ int adjvex; //该弧所指向的顶点的位置 struct ArcN 阅读全文
posted @ 2011-03-18 13:22 聊聊IT那些事 阅读(461) 评论(0) 推荐(0) 编辑