CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 广度遍历

搜索资源列表

  1. 李森数据结构作业

    1下载:
  2. 文件夹中包括常用的数据结构的算法,包括二叉树的三种递归和非递归算法,染色问题,八皇后问题,深度广度遍历,约瑟夫环,数值转换,树的高度和叶子节点数,最小生成树 ,两点之间的所有路径-folder include common data structure of the algorithm, including the three binary tree recursive and non - recursive algorithm, Dyeing, 8 Queen, depth and bread
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:19992
    • 提供者:李森
  1. perl_misc

    0下载:
  2. 对文件或目录的操作函数模版.根据对目录的分析结果对目录进行深度或广度遍历从而操作文件(或目录)-right file or directory operation function templates. Based on the analysis results directory of directories depth or breadth traversal thus operational documents (or directory)
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:6925
    • 提供者:tzl
  1. Broad-First-Search(AdjLGraph)

    0下载:
  2. 此代码为“图的广度优先遍历”的源代码,图的存储形式为邻接表,里面有图的邻接表存储的代码,还有广度优先遍历的算法,还有验证的主函数。-This code is " breadth-first traversal map" of the source code, Figure storage form of adjacency list, there are plans stored in the adjacent table code, as well as breadth-fi
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:2272
    • 提供者:熊龙龙
  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. GraphTraversal

    0下载:
  2. 图的遍历,实现图的深度和广度两种便利方式,方便快速。-Graph traversal, the realization of the depth and breadth of plans to facilitate the two way quickly and easily.
  3. 所属分类:Graph program

    • 发布日期:2017-04-13
    • 文件大小:2496
    • 提供者:张扬
  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. main

    2下载:
  2. 采用邻接矩阵表示无向图,完成图的创建、图的深度优先遍历、图的广度优先遍历操作。其中图的顶点信息是字符型,图中顶点序号按字符顺序排列。本输入样例中所用的图如下所示: Input Format: 第一行输入两个值,第一个是图中顶点的个数,第二个是图中边的条数 第二行输入各顶点的信息,即输入每个顶点字符 第三行开始输入每条边,每条边的形式为两个顶点的序号,中间以空格隔开,输入完一条边换行 Output format: 首先输出图的顶点信息,输出完毕换行 接着输出图的邻
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:2700
    • 提供者:kernel
  1. tu

    0下载:
  2. 、实验目的 1 熟练掌握各种内排序方法,深刻理解排序算法及其执行过程; 2 学会分析各种内排序算法的性能; 3 了解各种排序方法的优缺点,对于实际问题能够选择一种较好的排序方案; 4 熟练掌握图的存储结构; 5 掌握图的邻接矩阵和邻接表表示分别进行深度和广度优先搜索遍历的算法。 6 了解图的最小生成树算法。-Proficiency in the order of search, binary search and index searc
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:2640
    • 提供者:zhangge
  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. 017

    0下载:
  2. 建立图的邻接表,输出图的邻接表,深度优先遍历,广度优先遍历-CreateGraph,OutputGraph,DFSTraverse, BFSTraverse
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:10533
    • 提供者:张小华
  1. GraphTraversal

    0下载:
  2. 使用c语言,利用数据结构思想建立图的邻接表的存储结构,实现无向图的深度优先遍历和广度优先遍历。以用户指定的顶点为起点,分别输出每种遍历下的顶点访问序列。 设图的顶点不超过30个,每个顶点用一个编号表示(如果一个图有N个顶点,则它们的编号分别为1,2,…,N)。通过输入图的全部边输入一个图,每条边是两个顶点编号对,可以对边依附顶点编号的输入顺序作出限制(例如从小到大)。 -Using c language data structure used to establish the adjac
  3. 所属分类:assembly language

    • 发布日期:2017-04-17
    • 文件大小:200480
    • 提供者:赵胜楠
  1. tu

    0下载:
  2. 图的遍历 从图中某一顶点出发遍历图中其余顶点,且使每一个顶点仅被访问一次。通常有两条遍历图的路径:深度优先搜索和广度优先搜索。 -Graph traversal
  3. 所属分类:source in ebook

    • 发布日期:2017-04-07
    • 文件大小:229482
    • 提供者:徐燊
  1. guangduyouxiansousuo

    0下载:
  2. 这是通过图的遍历操作实现图的广度优先搜索,是通过邻接矩阵实现的-This is achieved through the operation of graph traversal graph breadth-first search is implemented through the adjacency matrix
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:256052
    • 提供者:刘月
  1. 123

    0下载:
  2. 图的遍历的演示,用C++编写。。。 深度广度优先遍历-tu de bianli
  3. 所属分类:Special Effects

    • 发布日期:2017-05-02
    • 文件大小:609530
    • 提供者:杨凌辉
  1. test

    0下载:
  2. 图的遍历演示,深度优先及广度优先,采用C++编译环境-tu de hianli
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1610
    • 提供者:杨凌辉
  1. graph_C(1)

    2下载:
  2. 建立无向图的邻接矩阵存储;对已经建立的无向图进行深度优先和广度优先遍历操作。建立有向图的邻接表存储;对已经建立的有向图进行深度优先和广度优先遍历操作。 -Establishment of the adjacency matrix storage on the already established undirected graph depth first and breadth-first traversal operation. Establish a table to store th
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:5829
    • 提供者:鼐児
  1. ConsoleApplication1

    0下载:
  2. 实现图的广度优先遍历,利用结构体指针,非常适合数据结构初学者。(Breadth first traversal of Graphs)
  3. 所属分类:其他

    • 发布日期:2018-01-05
    • 文件大小:2077696
    • 提供者:你他娘的
  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
  1. 无向图

    0下载:
  2. 无向图的创建,转化为邻接矩阵输出,及深度、广度优先遍历(The creation of undirected graph is transformed into adjacency matrix output and depth and breadth first traversal.)
  3. 所属分类:数据结构

    • 发布日期:2018-05-03
    • 文件大小:1024
    • 提供者:SuperLoser
  1. 图的遍历。

    0下载:
  2. 7、无向图,根据任意一个初始顶点,输出图的深度优先搜索遍历路径和广度优先搜索遍历路径。
  3. 所属分类:C#编程

« 1 23 4 5 6 7 8 9 10 ... 22 »
搜珍网 www.dssz.com