CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 图的深度优先

搜索资源列表

  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. jsj

    0下载:
  2. 1 创建给定图的存储结构,从邻接表和邻接矩阵两种存储方式中选择一种。 2 对所创建的图进行深度和广度优先搜索遍历,给出遍历过程中的顶点序列。 3 求图的最小生成树,按构造顺序输出边的序列。(两种方法都要求!) -Create a storage structure of a given graph from the adjacency list and adjacency matrix are two ways to choose a store. Two pairs of maps
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1690
    • 提供者:金伟
  1. directed_network

    0下载:
  2. 以邻接矩阵的方式确定有向网,完成: A.建立并显示出它的邻接链表; B.以非递归方式进行深度优先遍历,显示遍历的结果,(并随时显示栈的入出情况); C.对该图进行拓补排序,显示拓补排序的结果,并随时显示入度域的变化情况; D.给出某一确定顶点到所有其他顶点的最短路径-Adjacency matrix to determine a directed network, the completion of: A. To establish and demonstrate its adj
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:3454
    • 提供者:li
  1. bipartite_graph_maximum_matching

    0下载:
  2. 三种二项图最大匹配算法.包括使用广度优先搜索以及深度优先搜索的匈牙利算法,以及Hopcroft-Karp算法。-Three of bipartite graph maximum matching algorithms. Including 1.Hungarian with DFS 2.Hungarian with BFS 3.Hopcroft-Karp algorithm
  3. 所属分类:source in ebook

    • 发布日期:2017-03-25
    • 文件大小:1667
    • 提供者:lj-leech
  1. ChnChess

    0下载:
  2. 本程序在Windows98下用VC6.0编译通过,所使用位图来源于“象棋大师”教学软件, 设计和改进时参考了BorlandC++3.1的国际象棋程序和陈成涛所写的“中国象棋程序”。 在算法上采用有界深度优先Alpha-Beta剪枝递归搜索技术-The program under Windows98 using VC6.0 to compile, the use of bitmap from " Chess Master" teaching software design and
  3. 所属分类:Chess Poker games

    • 发布日期:2017-04-05
    • 文件大小:456175
    • 提供者:guanmj
  1. MapCreation

    1下载:
  2. 图的创建,深度优先和广度优先搜索,有实验报告-Map creation, depth-first and breadth-first search, there are experimental reports
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:30171
    • 提供者:xiafan
  1. bianli

    0下载:
  2. 图的遍历,对有向图进行广度和深度优先遍历。-Graph traversal, directed graph on the breadth and depth-first traversal.
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1600
    • 提供者:殷龙
  1. Graph

    0下载:
  2. 基于数据结构(c语言)图的遍历,包括深度优先遍历和广度优先遍历。-Based on data structures (c language) graph traversal, including the depth-first traversal and breadth-first traversal.
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:233796
    • 提供者:kjingxi
  1. graph

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

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

    0下载:
  2. 设有一个有向图存储在邻接表中。试设计一个算法,按深度优先搜索策略对其进行拓扑排序。并以右图为例检验你的算法的正确性。-There is a directed graph stored in the adjacent table. Trial design an algorithm, depth-first search strategy by the topology of its sort. And to test your example picture on the right algor
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:7229
    • 提供者:冯灿灿
  1. graphsearch(DFS)

    0下载:
  2. 根据深度优先搜索原理,用c++编程实现图的遍历,本程序源于对农夫和羊,狼以及蔬菜过河这一经典问题探究。-By c++ programing,we make DFS come ture! DFS means Depth First Search,it is a very impoint measure to reserch the graph.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:6083
    • 提供者:eric
  1. TraversingGraph

    0下载:
  2. 数据结构中的图的遍历问题。 设计一个网络蜘蛛系统,用有向网表示网页的链接网络,其中,顶点表示某个网页,有向弧表示网络之间的链接关系。并且分别以a. 深度优先搜索,b. 广度优先搜索的策略抓取网页。-The graph data structure traversal problem. Design a web spider system, with a link to the web page that network, where vertices a page, there is the
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:351866
    • 提供者:yylt
  1. tt0703

    0下载:
  2. 搜索算法。无向图的邻接表存储,深度优先搜索-Undirected graph of adjacency table storage, depth-first search
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:931
    • 提供者:秦天
  1. youxiangtu

    0下载:
  2. C++语言下的有向图深度优先搜寻和广度优先搜索-C++ language under the directed graph depth-first search and breadth-first search
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:1851
    • 提供者:无名
  1. graph

    0下载:
  2. 图子系统实验,定义了图的存储结构,以及队列操作。包括邻接矩阵,深度优先遍历,以及广度优先遍历-Figure subsystem test, defines the memory structure map and queue operations. Including the adjacency matrix, depth-first traversal and breadth-first traversal
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1650
    • 提供者:David wang
  1. graohliantong

    0下载:
  2. 利用深度优先遍历,判断无向/有向图的连通性的程序。-Using depth-first traversal to determine undirected/directed graph of the connectivity process.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:513
    • 提供者:李延明
  1. DFSBFS

    0下载:
  2. 设计一个有向图,建立图的邻接矩阵或邻接表的存储结构,完成有向图的DFS(深度优先遍历)和BFS(广度优先遍历)的操作-Design of a directed graph, the establishment of the adjacency matrix or adjacency list of the storage structure, complete directed graph DFS (depth-first traversal) and BFS (breadth-first tr
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:4613
    • 提供者:tang
  1. AIDFS

    0下载:
  2. 实现C#深度优先搜索七巧板程序,完成七巧板深度优先搜索的解答,算法对固定图效果还好-depth first search DFS AI
  3. 所属分类:Search Engine

    • 发布日期:2017-05-13
    • 文件大小:3354748
    • 提供者:赵忠
  1. tubianli

    0下载:
  2. 对图的邻接表表示进行深度优先遍历和广度优先遍历。-The adjacency list representation of the depth-first traversal and breadth-first traversal.
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:1853
    • 提供者:缪韩稀
  1. XGraph2

    2下载:
  2. 能够建立有向图无向图的邻接矩阵和邻接表表示法,深度优先和广度优先搜索,能够存储和显示相应的搜索结果(深度优先或广度优先生成森林(或生成树)、深度优先或广度优先序列和编号)。以文件形式输入图的顶点和边,并显示相应的结果。-To build a directed graph undirected adjacency matrix and adjacency list representation, depth-first and breadth-first search, to store and
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-12-25
    • 文件大小:30219
    • 提供者:zhangjing
« 1 2 ... 10 11 12 13 14 1516 17 18 19 20 »
搜珍网 www.dssz.com