2013级数据结构实验代码7vc6可直接运行.doc

2013级数据结构实验代码7vc6可直接运行.doc

  1. 1、本文档共26页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
2013级数据结构实验代码7vc6可直接运行

一、实验目的 掌握图的基本概念,描述方法;遍历方法。 二、实验内容 1、创建图类。二叉树的存储结构使用邻接矩阵或链表。 2、提供操作:遍历、BFS、DFS 3、对建立好的图,执行上述各操作。 4、输出生成树。 1、?输出最小生成树。 三、最小生成树的思想 (1)、2个for循环都是从2开始的,因为一般我们默认开始就把第一个节点加入生成树,因此之后不需要再次寻找它。 ( 2)、lowcost[i]记录的是以节点i为终点的最小边权值。初始化时因为默认把第一个节点加入生成树,因此lowcost[i] = graph[1][i],即最小边权值就是各节点到1号节点的边权值中最小的。 ( 3)mst[i]记录的是lowcost[i]对应的起点,这样有起点,有终点,即可唯????一确定一条边了。初始化时mst[i] = 1,即每条边都是从1号节点出发。 四、程序代码 ? #include iostream using namespace std; //队列 template class T class Node { ? public: ?Node(){} ?virtual ~Node(){} ?T data; ?NodeT *link; ? }; templateclass T class LinkedQueue { public: ?LinkedQueue(); ?virtual ~LinkedQueue(); ?bool IsEmpty() const{return ((front)?false:true);} ?LinkedQueueT Add(const T x); ?LinkedQueueT Delete(T x); public: ?NodeT *front; ?NodeT *rear; ? }; template class T LinkedQueueT::LinkedQueue() { ??front=rear=0; } template class T LinkedQueueT::~LinkedQueue() { ??NodeT *next; ??while(front) ??{ ???next=front-link; ???delete front; ???front=next; ??} } template class T LinkedQueueT LinkedQueueT::Add(const T x) { ?NodeT *p=new NodeT; ?p-data=x; ?p-link=0; ?if(front) ??rear-link=p; ?else front=p; ?rear=p; ? ?return *this; } template class T LinkedQueueT LinkedQueueT::Delete(T x) { ?if(IsEmpty()) ?{ ??return *this; ?} ?x=front-data; ? ?NodeT *p=front; ?front=front-link; ?delete p; ? ?return *this; } //加权有向图 template class T class AdjacencyWDigraph { public: ?AdjacencyWDigraph(int Vertices = 10,T noEdge=0); ?virtual ~AdjacencyWDigraph(){Delete2DArray(a,n+1);} ?bool Exist(int i,int j) const; ?int Edges() const {return e;} ?int Vertices() const {return n;} ?AdjacencyWDigraphT Add(int i,int j ,const T w); ?AdjacencyWDigraphT Delete(int i,int j); ?int OutDegree(int i) const; ?int InDegree(int i) const; ?void Make2DArray(T ** x,int rows,int cols); ?void Delete2DArray(T ** x,int rows); ???//遍历 ?void InitializePos(){pos=new int[n+1];} ?void DeactivatePos(){delete [] pos;} ?int Begin(int i); ?int NextVertex(int i); ?//宽度优先搜索 ?void BFS(int v,int reach[],int label); ?//深度优先搜索 ?vo

文档评论(0)

zilaiye + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档