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

搜索资源列表

  1. expert_animal

    0下载:
  2. 该资料中共有两种方法实现专家系统,分别利用多重链接表法和邻接表权值法来实现共15条规则,7种动物的识别。-The data There are two methods to achieve expert systems, respectively, the use of multiple linked tables and neighbor-joining method to achieve weight table of 15 rules, seven animal species ident
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-25
    • 文件大小:8487559
    • 提供者:cgyl
  1. tudecaozuo

    0下载:
  2. 有向图,无向图基本操作,包括: 1、邻接矩阵 2、邻接表 3、深度优先遍历 4、广度优先遍历 5、最小生成树 6、拓扑排序 7、每一对顶点之间的最短路径(Dijkstra,Floyd两种算法)-Directed graph, undirected graph, basic operations, including: 1, 2 adjacency matrix, adjacency table 3, 4 depth-first traversal, breadth-f
  3. 所属分类:Graph program

    • 发布日期:2017-04-14
    • 文件大小:5154
    • 提供者:learn
  1. linjjiejuzhen

    0下载:
  2. 将图的邻接矩阵表示方法转化为邻接表表示方法-The adjacency matrix adjacency list representation into a representation
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:4667
    • 提供者:learn
  1. str1

    0下载:
  2. 邻接表与邻接矩阵互相转化,已通过测试,可直接运行-Adjacency list and adjacency matrix into each other, has been tested, can be directly run
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1014
    • 提供者:cuiyingying
  1. Monks-and-savage-problem

    0下载:
  2. 这是一个古典问题。假设有n个修道士和n个野人准备渡河,但只有一条能容纳c人的小船,为了防止野人侵犯修道士,要求无论在何处,修道士的个数不得少于野人的人数(除非修道士个数为0)。如果两种人都会划船,试设计一个算法,确定他们能否渡过河去,若能,则给出一个小船来回次数最少的最佳方案。 要求: (1)用一个三元组(x1,x2,x3)表示渡河过程中各个状态。其中,x1表示起始岸上修道士个数,x2表示起始岸上野人个数,x3表示小船位置(0——在目的岸,1——在起始岸)。例如(2,1,1)表示起始岸上
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:213731
    • 提供者:panbowen
  1. adjacency-table-to-stor

    0下载:
  2. 用c语言来实现邻接表存储有向图,计算顶点的出度和入度-C language to implement a directed graph adjacency table to store, calculate the out-degree and vertex-degree
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:1369
    • 提供者:代伟
  1. dfs3

    0下载:
  2. 图的深度优先搜索算法,图的存储采用数组来模拟邻接表。-Graph depth-first search algorithm, Figure storage array used to simulate the adjacency table.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:552
    • 提供者:zzc
  1. yy5

    0下载:
  2. 1.定义图的数据结构。 2.编写函数,用邻接表实现图的存储结构,求图的顶点的度数。 3.编写函数,输出图的遍历序列。 -1. Define the graph data structure. 2. Write functions to achieve with the adjacency list graph storage structure, find the vertex degree. 3. Write function, the output graph traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:177550
    • 提供者:武朝阳
  1. CSharp---DFS-BFS

    0下载:
  2. 实现图的交互输入,可创建邻接表,还可进行深度优先遍历广度优先遍历,拓扑排序等-To achieve interactive map input, you can create adjacency table, but also for the breadth-first traversal depth-first traversal, topological sorting
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:141089
    • 提供者:宋园园
  1. shortpath

    0下载:
  2. 求最短路径,分别用邻接矩阵和邻接表,把路径保存在PATH数组里面。-The shortest path, respectively, with adjacency matrix and adjacency list, the path stored in the PATH array.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1334
    • 提供者:zhoulu
  1. 5.4

    0下载:
  2. 教学计划编制问题 (1)实验内容和实验目的: 1.大学的每个专业都要编制教学计划。假设任何专业都有固定的学习年限,每学年含两学期,每学期的时间长度和学分上限都相等。每个专业开设的课程都是确定的,而且课程的开设时间的安排必须满足先修关系。每个课程的先修关系都是确定的,可以有任意多门,也可以没有。每一门课程恰好一个学期。试在这样的情况下设置一个教学计划编制程序。 2.在大学的某个专业中选取几个课程作为顶点,通过各门课的先修关系来构建个图,该图用邻接表来存储,邻接表的头结点存储每门课
  3. 所属分类:Data structs

    • 发布日期:2017-05-07
    • 文件大小:1168494
    • 提供者:海叔
  1. 111

    0下载:
  2. 将一个无向图的邻接表转换为邻接矩阵 已手动运行 100 可行-An undirected graph adjacency list adjacency matrix have been converted to run 100 feasible to manually
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1007
    • 提供者:江泽民
  1. duo

    0下载:
  2. 线性规划 多段图 邻接表 最短路径-Multi-stage linear programming shortest path ,,,,,,,,,,,,,,,,,, adjacency list graph
  3. 所属分类:source in ebook

    • 发布日期:2017-04-02
    • 文件大小:1052
    • 提供者:傅海滨
  1. The-graph-traversing-algorithm

    0下载:
  2. 以邻接矩阵或邻接表为存储结构,以用户指定的顶点为起始点,实现无向连通图的深度优先及广度优先搜索遍历,并输出遍历的结点序列-The adjacency matrix or adjacency list for the storage structure to user-specified vertex as a starting point to achieve a connected undirected graph of the depth-first and breadth-first se
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:25253
    • 提供者:huaidiwu
  1. Dijkstra_11_11_14

    0下载:
  2. c语言实现Dijkstra算法的程序,邻接表用数组表示-c language program realize Dijkstra algorithm, adjacency table is an array
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2043
    • 提供者:小鱼
  1. test10

    0下载:
  2. (1) 掌握图的邻接矩阵、邻接表、十字链表等不同存储形式的表示方法。 (2) 掌握图的两种不同遍历方法的基本思想并能编程实现。 (3) 掌握构造最小生成树的两种算法,即Prim 算法和Kruscal算法的思想,并能编程实现。 (4) 能够灵活运用图的相关算法解决相应的实际问题。 -(1) master the adjacency matrix, adjacency list, cross-linked forms of representation of different st
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1258
    • 提供者:yuan li
  1. hold

    0下载:
  2. 用邻接表的方式建立有向,无向图,有向,无向网-Used to establish adjacency list, undirected graph, directed, undirected network
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1300
    • 提供者:侯阳
  1. KRUSKAL

    0下载:
  2. 建立邻接矩阵和邻接表,用克鲁斯卡尔算法求最小生成树-KRUSKAL function
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:756553
    • 提供者:yukiyuki
  1. database-Graph

    0下载:
  2. 一:实验目的: (1)掌握图的存储思想及其存储实现。 (2)掌握图的深度、广度优先遍历算法思想及其程序实现。 (3)掌握图的常见应用算法的思想及其程序实现。 (4)理解有向无环图、最短路径等算法 二:实验内容: 以下实验内容,1和2为必做内容,3为选做内容。 1.有向图 (1)键盘输入数据,建立一个有向图的邻接表,并输出该邻接表。 (2)在有向图的邻接表的基础上计算各顶点的度,并输出。 (3)以有向图的邻接表为基础实现并输出它的拓扑排序序
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:121148
    • 提供者:oky
  1. linjiejuzhen

    0下载:
  2. 对任意给定的图(顶点数不小于20,边数不少于30,图的类型可以是有向图、无向图、有向网、无向网),能够输入图的顶点和边(或弧)的信息,并存储到相应存储结构(邻接矩阵、邻接表、十字链表、邻接多重表,任选其中两种类型)-For any given figure (vertices not less than 20, the side for not less than 30, graph the type can be directed graph, no to figure, was the ne
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:16309
    • 提供者:王延达
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 ... 27 »
搜珍网 www.dssz.com