CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - graph adjacency list

搜索资源列表

  1. code

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

    • 发布日期:2017-04-01
    • 文件大小:6512
    • 提供者:徐洁
  1. 4-creatDG

    0下载:
  2. 1、 图的存储结构的定义和图的创建 图的种类有:有向图、无向图、有向网、无向网。 图的存储结构可采用:邻接矩阵、邻接表。 要求:分别给出邻接矩阵和邻接表在某一种图上的创建算法 -1, Figure storage structure definition and diagram types to create plans are: a directed graph, undirected graph, directed networks, undirected networks.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:866
    • 提供者:wanglin
  1. p1

    0下载:
  2. 建立有向图的邻接表. 图的信息从键盘输入。-create the adjacency list of a directed graph. Input the information of the graph through keyborad.
  3. 所属分类:File Operate

    • 发布日期:2017-03-31
    • 文件大小:769
    • 提供者:RUONAN WEN
  1. 1

    0下载:
  2. 1.建立一个无向图的邻接表存储 2。对该图进行深度优先搜索,按顺序输出所访问的-1. The establishment of an undirected graph in adjacency list is stored 2. Depth-first search of the graph, according to the order of the output of the visit
  3. 所属分类:Search Engine

    • 发布日期:2017-03-29
    • 文件大小:1120
    • 提供者:黄寺
  1. Graph2vertexpathproblem

    1下载:
  2. 试基于图的深度优先搜索策略编写一程序,判断以邻接表方式存储的有向图中是否存在 由顶点Vi到Vj顶点的路径。 -Test graph-based depth-first search strategy for the preparation of a program to determine ways to adjacency list stored in the existence of a directed graph from vertex Vi to vertex Vj pat
  3. 所属分类:Windows编程

    • 发布日期:2017-04-30
    • 文件大小:8928
    • 提供者:xiaoxue
  1. ds_5

    1下载:
  2. 1.定义图的数据结构。 2.编写函数,用邻接表实现图的存储结构,求图的顶点的度数。 3.编写函数,输出图的遍历序列。-1. The definition of graph data structure. 2. Write a function, using adjacency list implementation diagram of the storage structure, find the vertex of degree. 3. Write a function, the o
  3. 所属分类:Data structs

    • 发布日期:2016-05-20
    • 文件大小:858
    • 提供者:Yvonne
  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. basicoperationformap

    0下载:
  2. 包括了图的大部分基本算法,每一种算法都以邻接矩阵与邻接表两种形式给出,算法包括建图,图的遍历(如DFS和BFS),最小生成树,从某个源点到蓁各顶点的最短路径等-Includes most of the basic graph algorithms, each algorithm is to adjacency matrix and adjacency list is given in two forms, algorithms, including the construction of map
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:244936
    • 提供者:seckCoder
  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. 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. TTU

    4下载:
  2. 《数据结构》课程设计 建立并显示出有向图的邻接链表; 对该图进行拓扑排序,显示拓扑排序的结果,并随时显示入度域的变化情况; 给出它的关键路径(要求:显示出VE,VL,E,L,L-E的结果)。-" Data Structure" Course Design has established and demonstrated to the adjacency list the topological sort graph shows the results of top
  3. 所属分类:Data structs

    • 发布日期:2015-09-05
    • 文件大小:2101121
    • 提供者:S
  1. shenduyouxiansousuo(linjiebiao)

    0下载:
  2. 图的遍历,用邻接表实现图的深度优先搜索建的工程实现-Graph traversal, with the adjacency list graph depth-first search to achieve the construction of the project implementation
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:320500
    • 提供者:刘月
  1. tudebianliguochegn

    0下载:
  2. 图邻接矩阵_邻接表的建立 图的遍历课程设计-_ Adjacency list graph adjacency matrix graph traversal establishment of curriculum design
  3. 所属分类:Document

    • 发布日期:2017-04-03
    • 文件大小:711711
    • 提供者:孟男
  1. sort

    0下载:
  2. 给出一个有向图,采用邻接表存储方式,增加一个记录顶点入度的数据域,编写算法输出一个拓扑序列。-A directed graph given by adjacency list is stored, a record increase in the degree of vertex data into the field, the preparation of a topological algorithm output sequence.
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:237629
    • 提供者:卜丽娜
  1. sxz

    0下载:
  2. 怎么判断一个采用邻接表结构的有向图G是否为强连通图? 强连通块划分代码实现-Adjacency list used to determine how the structure of a directed graph G is a strongly connected graph? Strongly connected block of code division
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1329
    • 提供者:csjzky
  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. XHstudent

    0下载:
  2. 1.对多个链表进行操作 2.回溯法求解0/1背包 3.分枝限界法求解0/1背包 4.回溯法求解n—皇后问题 5.图的操作(邻接表表示)-1. Operate on multiple lists 2. Backtracking method for solving 0/1 knapsack 3. Branch and bound method for solving 0/1 knapsack 4. Backtracking to solve n-queens pr
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:248889
    • 提供者:晓枫
  1. linjiebiaodetu

    0下载:
  2. 8.3.2利用邻接表的图广度优先遍历算法-8.3.2 Using the adjacency list of graph breadth-first traversal algorithm
  3. 所属分类:Data structs

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

    0下载:
  2. 8.3.2利用邻接表的图广度优先遍历算法-8.3.2 Using the adjacency list of graph breadth-first traversal algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:939
    • 提供者:大无
« 1 2 3 45 6 7 »
搜珍网 www.dssz.com