Visitors hit counter dreamweaver
摘要: 直接上代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <memory.h>#include <iostream>#include <queue>using namespace std;//图的数组(邻接矩阵)存储#define INFINITY INT_MAX //用整型最大值#define MAX_VERTEX_NUM 20 //最大顶点个数 //顶点关系,对无权图,用1(是)或0(否)表示相邻否bool visited[20];ty 阅读全文
posted @ 2011-12-08 11:37 Jason Damon 阅读(1870) 评论(0) 推荐(0)