首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴DTaiLi的代码贴全部
#include"SeqList.h"
#include"SeqQueue.h"
const int MaxVertices=10;
const int MaxWeight=10000;
class AdjMWGraph
{
private:
SeqList Vertices;//顶点信息的线性表
int Edge[MaxVertices][MaxVertices];
int numOfEdges;
public:
AdjMWGraph(const int sz=MaxVertices); 
......................
阅读全部 | 2014年1月7日 17:16
1
DTaiLi