搜索资源列表

  1. 图的遍历

    0下载:
  2. 数据结构中关于图的遍历,任意建节点,深度优先和广度优先两种方法-data structure on the map traverse, arbitrary nodes built, the depth and breadth of priority priority two methods
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:42.5kb
    • 提供者:陈曦
  1. 图遍历

    1下载:
  2. 本程序用邻接矩阵实现图的深度优先遍历 图的广度优先遍历-the procedures used adjacency matrix of the plan is to achieve depth-first traversal of the plan breadth priority Ergodic
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:1.9kb
    • 提供者:李南宁
  1. 图的遍历

    0下载:
  2. 数据结构中关于图的遍历,任意建节点,深度优先和广度优先两种方法-data structure on the map traverse, arbitrary nodes built, the depth and breadth of priority priority two methods
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-12-22
    • 文件大小:42kb
    • 提供者:陈曦
  1. 图遍历

    0下载:
  2. 本程序用邻接矩阵实现图的深度优先遍历 图的广度优先遍历-the procedures used adjacency matrix of the plan is to achieve depth-first traversal of the plan breadth priority Ergodic
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-12-22
    • 文件大小:2kb
    • 提供者:李南宁
  1. grap

    0下载:
  2. —图数据类型的实现——问题描述:图是一种较线性表和树更为复杂的数据结构。在图形结构中,结点之间的关系是任意的,任意两个数据元素之间都可能相关,因此,图的应用非常广泛,已渗入到诸如语言学‘逻辑学、物理、化学、电讯工程、计算机科学及数学的其它分支中。因此,实现图这种数据类型也尤为重要,在该练习中即要实现图的抽象数据类型。基本要求:2、 定义出图的ADT;3、 采用邻接矩阵及邻接表的存储结构(有向图也可使用十字链表)实现以下操作:a. 构造图
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-12-22
    • 文件大小:2kb
    • 提供者:水寒
  1. 图的遍历演示

    0下载:
  2. 一. 问题描述很多涉及图上操作的算法都是以图的遍历为基础的。试写一个程序,演示在连通的无向图上访问全部节点的操作。二. 基本要求以邻接多重链表为存储结构。实现连通无向图的深度和广度优先遍历。以用户指定的节点为起点,分别输出每种遍历下的节点访问序列和相应生成树的边集。-one. Descr iption many issues involving maps of algorithms are to traverse the map-bas
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-12-22
    • 文件大小:2kb
    • 提供者:雨后阳光
  1. guide

    0下载:
  2. 该程序实现公园导游功能,使用改进的深度遍历算法,给出两点之间的若干最短路径,程序界面简单,使用方便-park guide function, the use of improved depth traversal algorithm, given the number between 2:00 shortest path, program interface simple and easy to use
  3. 所属分类:嵌入式/单片机编程

    • 发布日期:2024-12-22
    • 文件大小:22kb
    • 提供者:张纯
  1. tu0

    0下载:
  2. 图的遍历,有广度、深度遍历。 有两种存储结构,包括领结表、领结矩阵。-graph traversal, breadth, depth traverse. There are two storage structures, including Bowtie table, tie matrix.
  3. 所属分类:压缩解压

    • 发布日期:2024-12-22
    • 文件大小:876kb
    • 提供者:任帅
  1. tushendu

    0下载:
  2. 图的深度遍历,输出结果为(红色为键盘输入的数据,权值都置为1): 输入顶点数和弧数:8 9 输入8个顶点. 输入顶点0:a 输入顶点1:b 输入顶点2:c 输入顶点3:d 输入顶点4:e 输入顶点5:f 输入顶点6:g 输入顶点7:h 输入9条弧. 输入弧0:a b 1 输入弧1:b d 1 输入弧2:b e 1 输入弧3:d h 1
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-12-22
    • 文件大小:1kb
    • 提供者:Louis
  1. tu

    0下载:
  2. 图的建立以及深度遍历,该代码很简单,是用链式存储的-Map-building, as well as the depth of traversal, the code is very simple, with chain store
  3. 所属分类:汇编语言

    • 发布日期:2024-12-22
    • 文件大小:233kb
    • 提供者:xiaozheng
  1. depth_first_search

    0下载:
  2. 通过深度优先算法,遍历网络中的每个结点,得到遍历网络节点的时间-Through the depth-first algorithm, network traversal each node, the network node traversal time
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-12-22
    • 文件大小:1kb
    • 提供者:小跑仙翁
  1. graph.yangxu

    0下载:
  2. 熟悉图的存储方式,实现图的邻接矩阵或者邻接表的存储方式下的基本运算,特别是深度遍历和广度遍历;掌握以图为基础的一些常用算法,如最小生成树、拓扑排序、最短路径等。-Familiar with the map of storage practices, and achieve adjacency matrix or adjacency list is stored under the basic operations, especially
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-12-22
    • 文件大小:248kb
    • 提供者:胡顶豪
  1. traversinggraph

    0下载:
  2. 图的遍历的实现,文字界面,包含深度遍历和广度遍历两种情况-Graph traversal implementation, the text interface, including the depth and breadth traversal traverse both cases ~ ~
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-12-22
    • 文件大小:1kb
    • 提供者:黄毅骏
  1. Graph

    0下载:
  2. 对图表的储存,深度遍历,广度遍历,文件操作的源代码(For chart storage, depth traversal, breadth traversal, file operation source code)
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-12-22
    • 文件大小:1kb
    • 提供者:wei_sheng
  1. text13

    0下载:
  2. 通过邻接表来构建一个无向图,然后分别深度遍历图以及广度遍历图(Build a graph by adjacency table, and then traverse the map in depth and breadth)
  3. 所属分类:其他小程序

    • 发布日期:2024-12-22
    • 文件大小:18kb
    • 提供者:君自重
  1. 图的遍历源代码

    0下载:
  2. 图的深度遍历源代码 ,写的很详细,很好,需要的下(The depth of the graph traversal source code, written in great detail, very good)
  3. 所属分类:其他小程序

  1. 图的遍历

    0下载:
  2. 图的构建以及实现图的深度遍历和广度遍历!!!!!!!!(tudegoujianyijishixiantudeshendubianliheguangdubianli)
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-12-22
    • 文件大小:1kb
    • 提供者:搞错了
  1. 图的深度和广度搜索

    0下载:
  2. 关于图的邻接矩阵的建立和广度和深度遍历结果显示(The establishment of the adjacency matrix of a graph and the result of the breadth and depth traversal)
  3. 所属分类:文档资料

    • 发布日期:2024-12-22
    • 文件大小:119kb
    • 提供者:风花之月
  1. 二叉树遍历操作

    0下载:
  2. 本代码采用c/c++语言,描述了二叉树的先中后序遍历及深度(This code uses c/c++ language to describe the first and middle traversal traversal and depth of two binary tree.)
  3. 所属分类:其他小程序

    • 发布日期:2024-12-22
    • 文件大小:1kb
    • 提供者:SuperLoser
  1. 图的遍历

    0下载:
  2. 构造图的邻接表,实现图的深度优先和广度优先算法。(Structure graph adjacency table, graph depth first and breadth-first algorithm.)
  3. 所属分类:Windows编程

« 12 3 4 5 6 7 8 9 10 ... 40 »

源码中国 www.ymcn.org