搜索资源列表

  1. tgdbl

    0下载:
  2. 对于一个给定的任意边数和顶点值的有向图或无向图,用邻接表存储,并用广度优先搜索算法实现对图的遍历,借助队列实现。 -For a given arbitrary value of edges and vertices of the directed graph or undirected graph, with adjacency table storage, and realize the breadth-first search
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:朱蓉
  1. tuDeBianLi

    0下载:
  2. 以邻接表为存储结构,选择图的类型(有向图或无向图),创建相应的图。对创建的图按深度优先和广度优先的遍历。(文档中含代码) -To the adjacent table for the storage structure, select the type of graph (directed graph or undirected graph), create a corresponding map. To create the gr
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:25600
    • 提供者:展令杨
  1. graph

    1下载:
  2. 实现了图的主要操作:(1)分别用邻接矩阵和邻接表实现图的基本操作(包括图的广度和深度优先搜索);(2)判断该图是否连通,输出该图的连通分量数目;(3)输出一个每一个连通分量的最小生成树。-The main achievement of the plan steps: (1), respectively, with adjacency matrix and adjacency list to achieve the basic map o
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:20480
    • 提供者:李雅芳
  1. graph

    0下载:
  2. 图的邻接表存储和深度优先搜索,采用的是递归。-Graph adjacency list storage, and depth-first search, using recursion.
  3. 所属分类:图形图象

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:谢斌
  1. traffic

    0下载:
  2. [基本要求] (1)提供对城市信息进行编辑(如:添加功删除)的功能 (2)城市之间有两面种交通工具:火车和飞机。提供对列车时间表和飞机航班进行编辑(增设或删除)的功能。 (3)提供两面种最优决策:最快到达或最省钱到达。全程只考虑一种交通工具。 (4)旅途中耗费的总时间应该包括中转站的等候时间。 (5)咨询以用户和计算机的对话方式进行。由用户输入起始站、终点站、最优决策原则和交通工具,输出信息:最快需要多长时
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:30720
    • 提供者:审震
  1. datastructure

    0下载:
  2. 设计邻接表类,实现无向图的深度优先非递归遍历,无向图的广度优先遍历,并设计主函数输入数据进行测试-Design category adjacency list, realize undirected graph of the depth-first traversal non-recursive, non-directed graph breadth-first traversal, and the design of the main
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1383424
    • 提供者:lindaoming
  1. graph

    0下载:
  2. 图的邻接表存储表示法 源码 这是进行计算机图论算法的基础 如最基本算法DFS BFS 图的邻接表存储表示法 源码 这是进行计算机图论算法的基础 如最基本算法DFS BFS-Adjacency list graph representation of source storage This is a computer algorithm based on graph theory such as the basic algori
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:880640
    • 提供者:cuiyuzheng
  1. picture

    0下载:
  2. 实现图的遍历。对图的深度和广度的遍历,建立邻接矩阵与邻接表-The realization of graph traversal. To map the depth and breadth of the traverse, the establishment of adjacency matrix and adjacency list
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:2048
    • 提供者:yuxin
  1. DataStruture-Graph

    0下载:
  2. 1.7.1 图的邻接矩阵存储表示 311 范例1-102 图的邻接矩阵存储表示 ∷相关函数:CreateFAG函数 CreateDG函数 1.7.2 图的邻接表存储表示 324 范例1-103 图的邻接表存储表示 324 ∷相关函数:CreateFAG函数 1.7.3 有向图的十字链表存储表示 335 范例1-104 有向图的十字链表存储表示 335 ∷相关函数:CreateDG函数 1.7.4 无
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:518144
    • 提供者:北风
  1. Dijkstra

    0下载:
  2. 该问题为单元最短路经问题,求出一个有向图中两点之间权值最小的路径。 Dijkstra算法要求有向图中没有权值为负的边,有向图的信息由一个邻接表来表示,另外对每个顶点都设置一个属性d[v],描述从源点到v的最短路经上权值的上界。算法中设置一个顶点集合S,反复选择具有最短路经估计的顶点u∈V-S,并将u加入S中,算法中还用到了顶点的最小优先队列,排序关键字为顶点的d值。-The issue of the shortest path prob
  3. 所属分类:其他小程序

    • 发布日期:2024-05-19
    • 文件大小:6144
    • 提供者:
  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 tab
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:2048
    • 提供者:熊龙龙
  1. SY11

    0下载:
  2. 邻接表存储有向图,判断任意两结点间有无路径-Storage adjacent to the map table to determine the two arbitrary whether the path between nodes
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:lili
  1. tu

    0下载:
  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 a
  3. 所属分类:其他小程序

    • 发布日期:2024-05-19
    • 文件大小:150528
    • 提供者:feixue_12
  1. tudexg

    0下载:
  2. 1.邻接表创建图 2.打印图的信息 3.深度优先遍历图 4.最小生成树 5.邻接矩阵创建无向网-1. Adjacency table to create Figure 2. Print map information 3. Depth-first traversal Figure 4. Minimum Spanning Tree 5. Adjacency matrix to create a non-network
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:5120
    • 提供者:赵伟
  1. adjacency_link

    0下载:
  2. 使用VC建立无向图的邻接表。再通过简单的打印函数遍历整张图,输入各个节点信息。-Establish the adjacency link of the no direction graph based on VC. And then prints the whole graph through the simple print function, and outputs the information of all the nodes.
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:朱特
  1. code

    0下载:
  2. 学习数据结构时编写的有关二叉树基本运算实现,有向图和邻接矩阵,邻接表的转换,输出某矩阵转置矩阵的三元组以及两矩阵进行运算后结果用三元组表示,在学习VC程序设计写了一个简单的机场不同型号车辆的收费系统。-Learning data structures to prepare basic operations on binary tree realization of a directed graph and the adjacency m
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:6144
    • 提供者:徐洁
  1. tu

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

    • 发布日期:2024-05-19
    • 文件大小:3072
    • 提供者:zhangge
  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-05-19
    • 文件大小:253952
    • 提供者:胡顶豪
  1. Traversing_Graph

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

    • 发布日期:2024-05-19
    • 文件大小:301056
    • 提供者:董玉玺
  1. graph

    0下载:
  2. 运用VC++ 编写的图的邻接矩阵存储和邻接表存储,并对图进行遍历-it is the storage of the graph
  3. 所属分类:图形图象

    • 发布日期:2024-05-19
    • 文件大小:2048
    • 提供者:yh
« 1 2 34 5 6 7 8 9 10 ... 31 »

源码中国 www.ymcn.org