欢迎来到天天文库
浏览记录
ID:55879356
大小:31.88 KB
页数:5页
时间:2020-06-12
《图的深度遍历与广度遍历.doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、图的深度遍历和广度遍历程序源代码如下:#include"stdio.h"#include"stdlib.h"#defineMAXQSIZE100#defineMVNum100intvisited[100];typedefstruct{char*base;intfront;intrear;}SqQueue;intInitQueue(SqQueue&Q)//初始化队列{Q.base=newchar[MAXQSIZE];if(!Q.base)exit(-1);//存储失败Q.front=Q.rear=0;/
2、/队列为空return1;}intQueueEmpty(SqQueue&Q)//判断队非空{if(Q.front==Q.rear)return0;return1;}intEnQueue(SqQueue&Q,chare)//入队{if((Q.rear+1)%MAXQSIZE==Q.front)//队满return0;Q.base[Q.rear]=e;//新元素插入队尾Q.rear=(Q.rear+1)%MAXQSIZE;//队尾指针加1return1;}intDeQueue(SqQueue&Q,char
3、&e)//出队{if(Q.front==Q.rear)return0;//队空e=Q.base[Q.front];Q.front=(Q.front+1)%MAXQSIZE;return1;}intGetHead(SqQueueQ)//取队头元素{if(Q.front!=Q.rear)returnQ.base[Q.front];}typedefstruct//定义图{charvexs[MVNum];intarcs[MVNum][MVNum];intvexnum,arcnum;}AMGraph;intLo
4、cateVex(AMGraphG,charu){inti;for(i=0;i5、",&G.vexs[i]);getchar();for(i=0;i6、度遍历图{intw;printf("%c",G.vexs[v]);visited[v]=1;for(w=0;w7、/广度遍历{intw;SqQueueQ;printf("%c",G.vexs[v]);//访问第v个顶点visited[v]=1;InitQueue(Q);//初始化队列,置空EnQueue(Q,v);//v进队charu=GetHead(Q);while(!QueueEmpty(Q))//队列非空{DeQueue(Q,u);//队头元素出队,置为ufor(w=0;w8、w);//w进队}}}voidBFSTraverse(AMGraphG){intv;for(v=0;v
5、",&G.vexs[i]);getchar();for(i=0;i6、度遍历图{intw;printf("%c",G.vexs[v]);visited[v]=1;for(w=0;w7、/广度遍历{intw;SqQueueQ;printf("%c",G.vexs[v]);//访问第v个顶点visited[v]=1;InitQueue(Q);//初始化队列,置空EnQueue(Q,v);//v进队charu=GetHead(Q);while(!QueueEmpty(Q))//队列非空{DeQueue(Q,u);//队头元素出队,置为ufor(w=0;w8、w);//w进队}}}voidBFSTraverse(AMGraphG){intv;for(v=0;v
6、度遍历图{intw;printf("%c",G.vexs[v]);visited[v]=1;for(w=0;w7、/广度遍历{intw;SqQueueQ;printf("%c",G.vexs[v]);//访问第v个顶点visited[v]=1;InitQueue(Q);//初始化队列,置空EnQueue(Q,v);//v进队charu=GetHead(Q);while(!QueueEmpty(Q))//队列非空{DeQueue(Q,u);//队头元素出队,置为ufor(w=0;w8、w);//w进队}}}voidBFSTraverse(AMGraphG){intv;for(v=0;v
7、/广度遍历{intw;SqQueueQ;printf("%c",G.vexs[v]);//访问第v个顶点visited[v]=1;InitQueue(Q);//初始化队列,置空EnQueue(Q,v);//v进队charu=GetHead(Q);while(!QueueEmpty(Q))//队列非空{DeQueue(Q,u);//队头元素出队,置为ufor(w=0;w8、w);//w进队}}}voidBFSTraverse(AMGraphG){intv;for(v=0;v
8、w);//w进队}}}voidBFSTraverse(AMGraphG){intv;for(v=0;v
此文档下载收益归作者所有