CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 图的深度和广度遍历

搜索资源列表

  1. disanti

    0下载:
  2. (1)自选存储结构,输入含n个顶点(用字符表示顶点名称)和e条边的图G; (2)指定任意顶点x为初始顶点,对图G作DFS遍历,输出DFS(深度优先)顶点序列(提示:使用栈实现DFS); (3)指定任意顶点x为初始顶点,对图G作BFS(广度遍历),输出BFS顶点序列(提示:使用队列实现BFS); (5)输入顶点x,查找图G:若存在含x的顶点,则删除该结点及与之相关连的边,并作DFS遍历(执行操作3);否则输出信息“不存在x”; (6)判断图G是否是连通图,输出信息“YES”/“NO
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:2734
    • 提供者:涂舒
  1. tu

    1下载:
  2. 以邻接表为存储结构,实现连通无向图的深度优先和广度优先遍历。以用户指定的结点为起点,分别输出每种遍历下的结点访问序列。 -To the adjacent table for the storage structures, to achieve connectivity of undirected graph depth-first and breadth-first traversal. To user-specified node as a starting point, respective
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:150597
    • 提供者:feixue_12
  1. 3

    0下载:
  2. 设计一个有向图和一个无向图,任选一种存储结构,完成有向图和无向图的DFS(深度优先遍历)和BFS(广度优先遍历)的操作。-Design of a directed graph and an undirected graph, either type of storage structure, the completion of a directed graph and an undirected graph of the DFS (depth-first traversal) and BFS (
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:1598
    • 提供者:peter
  1. 22

    0下载:
  2. 这是我平时做的一次作业,是用C++编写的一个程序,是关于图的遍历,实现对图的广度和深度遍历-This is what I usually do a job, is written in C++, a program on the graph traversal to realize the breadth and depth of the graph traversal
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-16
    • 文件大小:29260
    • 提供者:潇潇
  1. tudebianli

    0下载:
  2. 图的遍历包括深度优先搜索和广度优先搜索,大家可以看看。-Graph traversal, including depth-first search and breadth-first search, we can look at.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:1760
    • 提供者:zhangfei
  1. tu3

    0下载:
  2. 1 创建给定图的存储结构,从邻接表和邻接矩阵两种存储方式中选择一种。 2 对所创建的图进行深度和广度优先搜索遍历,给出遍历过程中的顶点序列。 3 求图的最小生成树,按构造顺序输出边的序列。(两种方法都要求!) 3 编写一个主函数,将上面函数连在一起,构成一个完整程序。 4 将实验源程序调试并运行。 -Create a storage structure of a given graph from the adjacency list and adjacency matrix
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:1674
    • 提供者:王欣
  1. Traversing_Graph

    0下载:
  2. 树的邻接表表示和邻接矩阵表示,以及图的广度优先和深度优先遍历。-Tree adjacency list representation and adjacency matrix representation, and the graph breadth-first and depth-first traversal.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:300606
    • 提供者:董玉玺
  1. Graph

    0下载:
  2. 通过深度和广度遍历 实现对图各节点的遍历算法-Achieved by traversing the depth and breadth of the graph traversal algorithm for each node
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:6601
    • 提供者:韩丰
  1. tudebianli

    0下载:
  2. 图的深度遍历和广度遍历(以邻接表为存储结构)-The depth and breadth traversal graph traversal (in the adjacent table for the storage structure)
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:239110
    • 提供者:清风煕
  1. graph

    0下载:
  2. 无向图的建立以及深度优先和广度优先遍历并输出 -DFS and BFS search for a graph
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:888
    • 提供者:zhangyue
  1. graph

    0下载:
  2. 无向图的遍历搜索,可以实现非递归深度搜素和广度搜索。-Undirected graph traversal search, you can achieve a non-recursive depth the Su-search and breadth of the search.
  3. 所属分类:Other systems

    • 发布日期:2017-11-21
    • 文件大小:1489
    • 提供者:小王
  1. s6

    0下载:
  2. 数据结构 在图G中求一条从顶点i到顶点s 的简单路径。 实验目的: 1、掌握图的各种存储结构,尤其熟练掌握邻接矩阵和邻接表存储结构; 2、熟练掌握图的深度优先遍历和广度优先遍历算法; 3、在遍历算法的基础上设计其他应用算法。 -Data structures and seek a graph G from vertex i to vertex s simple path. Experiment: a master chart of the various storage
  3. 所属分类:Other systems

    • 发布日期:2017-11-17
    • 文件大小:1338
    • 提供者:hank
  1. bianli

    0下载:
  2. 这是图的深度优先遍历和广度优先遍历算法,可以改变结点数和边数-This is illustrated in the depth-first traversal and breadth-first traversal algorithm, you can change the number of nodes and edges
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:1118
    • 提供者:陈子文
  1. tu

    0下载:
  2. 1. 建立并显示图的邻接矩阵。 2. 建立并显示图的邻接表。 3. 实现图的深度优先和广度优先遍历。 4. 编写测试程序。 -(1) Establishment and display the adjacency matrix. (2) create and display the adjacency table. 3 to achieve depth-first and breadth-first traversal. 4. Preparation of test
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:3799
    • 提供者:guan
  1. deep_and_wide

    0下载:
  2. 图的深度和广度遍历代码,比较基础,适合初学者-Depth and breadth traversal code, more basic, for beginners
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-15
    • 文件大小:6642
    • 提供者:li
  1. yubianli

    0下载:
  2. 以邻接多重表为存储结构,实现连通无向图的深度优先和广度优先遍历。以用户指定的结点为起点,分别输出每种遍历下的结点访问序列和相应生成树的边集。-his is a graph traversal demo source code is written in c language, we can refer to this algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:1084
    • 提供者:源于纯净水
  1. tudejianlijibianlifangfa

    0下载:
  2. 1.要求对于给定的图分别用邻接矩阵和邻接表来存储。 2.对于存储好的图进行深度和广度优先遍历。 3.完成图的各种操作。 - 1. Requirements for a given graph adjacency matrix and adjacency were used to store the table. 2. Good depth chart for storage and breadth-first traversal. 3. Complete dia
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:3072
    • 提供者:李辉
  1. DFS_BFS

    0下载:
  2. 数据结构图论中,实现邻接矩阵的深度遍历和邻接矩阵广度遍历.-Data structure graph theory, the depth traversal and breadth to achieve adjacency matrix adjacency matrix traversal.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:2001
    • 提供者:zhangsan
  1. GrapgTraverse

    0下载:
  2. 数据结构,以邻接矩阵的方式建立图。对图进行深度遍历和广度遍历。-Data structure, the establishment of adjacency matrix approach. Depth traversal and breadth traversal.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1101
    • 提供者:麦丁
  1. sy10(1)

    0下载:
  2. 图的存储结构与遍历 (1)画出如图(1)所示无向图的邻接矩阵和邻接表,列出该图的广度优先遍历和深度优先遍历结果(选定A为出发点进行遍历)。 (2)画出如图(2)所示有向图的邻接矩阵和邻接表,列出该图的广度优先遍历和深度优先遍历结果(选定A为出发点进行遍历)(The storage structure of the graph and traversal (1) draw the adjacency matrix and adjacency list of the und
  3. 所属分类:其他

    • 发布日期:2018-04-18
    • 文件大小:114688
    • 提供者:找HDOP
« 12 »
搜珍网 www.dssz.com