图的深搜BFS和广搜DFS遍历(国外英语资料).doc

图的深搜BFS和广搜DFS遍历(国外英语资料).doc

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

图的深搜BFS和广搜DFS遍历(国外英语资料)*The establishment and traverse of 5- diagram on computer test1) establish the adjacency table storage structure of undirected [unconnected] graphs, requiring that the number of vertices be no less than 15.2) use DFS and BFS to traverse the adjacency table, and print out the traversal order of the two traversal.3) given any two vertices V1, V2, and integer k in the graph, determine whether there is a simple path from V1 to V2 with a path length of K, if you print the vertex sequence on the path of the path (which requires no path on the path).Further: find a simple path from V1 to V2 for all paths of length K. (simple path is the path of a vertex in a vertex sequence that does not contain] [recurrence]* /#includememory#includecstdio#includemalloc.h#define PointNum 15Using namespace std;Struct V{Int vertex;Int distance;Int sign;Struct V* next;}Vertex[PointNum+1];Int P[PointNum];Int union_find (int x) / / and check collection{While (P[x], =x) x=P[x];Return x;}Void DFS (int vertex_);Void BFS (int vertex_);Int DFS (int, V1, int, V2);Int, DFS (int, V1, int, V2, int, V3, int, kn);Int, lujing[PointNum+1], lujing_I;Int, main (){Int, times, vertexNumbers, edgeNumbers, I, J, V1, V2, Distance, kn, n=1, V1, v2;Struct, V, *p, *q, *temp;Printf (enter the number of tests you want to do:);Scanf (%d, times);While (times--){Printf (\n, group%d, data entered.\n , n++ );Printf (enter the top count:);Scanf (%d, vertexNumbers); / / vertexNumbers to ensure that = PointNumFor (I = 0; I vertexNumbers; I + +){Vertex[i].vertex = I; //////////////////////////Vertex[i].distance = 0; ////////////////////////Vertex[i].sign = 0;Vertex[i].next = NULL;}Printf (enter the number of sides:);Scanf (%d, edgeNumbers); / / vertexNumbers to ensure that = PointNumFor (I = 0; I edgeNumbers; I + +){Printf (enter data:);Scanf (%d%d%d, V1, V2, Distance);P = Vertex[V1]; q = Vertex[V1].next;While (q = = NULL) {P = q;Q = q-next;Q points to the end of the Vertex[V1] -NULL}// adjacency list

文档评论(0)

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

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

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档