图的遍历源代码.doc

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

#includestdio.h #includemalloc.h typedef struct linknode{ int adjvecx; struct linknode *next; }linknode; typedef struct vnode{ char data; linknode *first; }vnode,adjlist[100]; typedef struct{ int n; adjlist vertices; }graph; int visited[10]; struct queue{ int rear,front; int node[100]; }; //队的初始化 void initqueue(queue Q){ Q.rear=-1; Q.front=-1; for(int i=0;i100;i++) Q.node[i]=0; } //判断队是否为空 int isEmpty(queue Q){ if(Q.rear==Q.front) return 0; else return 1; } //入队 void enqueue(queue Q,int e){ Q.rear=(Q.rear+1)%100; Q.node[Q.rear]=e; // Q.rear=(Q.rear+1)%100; } //出队 int dequeue(queue Q){ int v; if(isEmpty(Q)==0){ printf(该队列为空\n); } Q.front=(Q.front+1)%100; v=Q.node[Q.front]; return v; // for(int i=0;i100;i++){ // Q.node[n+1]=Q.node[n]; // } } //构建链表 void creatlinknode(graph *g,int k){ linknode *p,*q;int a,b,j; // p=G.vertices[k].first; printf(请输入第%d个顶点所指向的顶点的个数:,k+1); scanf(%d,a); if(a!=0) { printf(输入其所指向的第1个定点的位置:); scanf(%d,b); q=(struct linknode*)malloc(sizeof(struct linknode)) ; q-adjvecx=b;q-next=NULL; g-vertices[k].first=q; p=q; for( j=0;ja-1;j++) { printf(输入其所指向的第%d个定点的位置:,j+2); scanf(%d,b); q=(struct linknode*)malloc(sizeof(struct linknode)) ; q-adjvecx=b;q-next=NULL; p-next=q;p=p-next; } } else {g-vertices[k].first=NULL;} } //构建 void creatgraph(graph *g){ //int a; //int A[10]; printf(请输入顶点的个数:); scanf(%d,g-n); printf(请输入顶点的值:); for(int i=0;ig-n;i++){ getchar(); scanf(%c,g-vertices[i].data); } for(int k=0;kg-n;k++){ creatlinknode(g, k); } } //深度遍历 void dfsal(graph *g,int i){ int w;//linknode *p; // p=(struct linknode*)malloc(sizeof(struct linknode)) ; // for(int j=0;jg-n;j++) visited[j]=0; printf(%5c,g-vertices[i].data); visited[i]=1; for(linknode *p=g-vertices[i].first;p;p=p-next){ w=p-adjvecx; if(visited[w]==0) dfsal(g,w); } } //广度遍历 void bfsal(graph *g,int i){ queue Q;int w,e; int v; linknode *p; for(int j=0;jg

文档评论(0)

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

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

版权声明书
用户编号:8130065136000003

1亿VIP精品文档

相关文档