欢迎来到天天文库
浏览记录
ID:69984889
大小:143.00 KB
页数:7页
时间:2021-11-14
《图的深度遍历与广度遍历》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、------------------------------------------作者xxxx------------------------------------------日期xxxx图的深度遍历与广度遍历【精品文档】图的深度遍历和广度遍历程序源代码如下:#include"stdio.h"#include"stdlib.h"#defineMAXQSIZE100#defineMVNum100intvisited[100];typedefstruct{char*base;intfront;intrear;}SqQueue;intInitQ
2、ueue(SqQueue&Q)//初始化队列{Q.base=newchar[MAXQSIZE];if(!Q.base)exit(-1);//存储失败Q.front=Q.rear=0;//队列为空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;//新元素插入
3、队尾【精品文档】【精品文档】Q.rear=(Q.rear+1)%MAXQSIZE;//队尾指针加1return1;}intDeQueue(SqQueue&Q,char&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//定义图{charvex
4、s[MVNum];intarcs[MVNum][MVNum];intvexnum,arcnum;}AMGraph;intLocateVex(AMGraphG,charu){inti;for(i=0;i5、();printf("请输入图:");for(i=0;i6、turn1;}voidDFS(AMGraphG,intv)//深度遍历图{intw;printf("%c",G.vexs[v]);visited[v]=1;for(w=0;w7、voidBFS(AMGraphG,intv)//广度遍历{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、Q,w);//w进队}}}voidBFSTraverse(AMGraphG){intv;for(v=0;v
5、();printf("请输入图:");for(i=0;i6、turn1;}voidDFS(AMGraphG,intv)//深度遍历图{intw;printf("%c",G.vexs[v]);visited[v]=1;for(w=0;w7、voidBFS(AMGraphG,intv)//广度遍历{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、Q,w);//w进队}}}voidBFSTraverse(AMGraphG){intv;for(v=0;v
6、turn1;}voidDFS(AMGraphG,intv)//深度遍历图{intw;printf("%c",G.vexs[v]);visited[v]=1;for(w=0;w7、voidBFS(AMGraphG,intv)//广度遍历{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、Q,w);//w进队}}}voidBFSTraverse(AMGraphG){intv;for(v=0;v
7、voidBFS(AMGraphG,intv)//广度遍历{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、Q,w);//w进队}}}voidBFSTraverse(AMGraphG){intv;for(v=0;v
8、Q,w);//w进队}}}voidBFSTraverse(AMGraphG){intv;for(v=0;v
此文档下载收益归作者所有