摘要:
#include "iostream.h"#include "fstream.h"#include "SqStack.h"#include "stdlib.h"#define MAX 100000#define MAX_VERTEX_NUM 20 typedef enum {DG,DN,UDG,UDN} GraphKind;typedef char VertexType; typedef struct { VertexType vexs[MAX_VERTEX_NUM]; int arcs[MAX_VERTEX_NU 阅读全文
posted @ 2011-03-25 10:56 teiller2008 阅读(274) 评论(0) 推荐(1) 编辑