CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 无向图

搜索资源列表

  1. primkruskal

    0下载:
  2. 用克鲁斯卡尔(kruskal)算法求N个结点所联成的加权无向图的最小生成树,核心代码比较简单。-Using Kruskal (kruskal) algorithm to solve the N nodes are linked to form a weighted undirected graph of the minimum spanning tree, the core code simple.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:2375
    • 提供者:myj
  1. rrrrrrr

    0下载:
  2. 以邻接多重表为存储结构,实现连通无向图的深度优先和广度优先遍历。以用户指定的结点为起点,分别输出每种遍历下的结点访问序列和相应生成树的边集。-To the adjacent multi-table storage structure, connectivity undirected graph depth first and breadth-first traversal. User-specified node as a starting point, respectively, under
  3. 所属分类:CSharp

    • 发布日期:2017-04-03
    • 文件大小:2351
    • 提供者:liuxuqi
  1. tubianliyanshi

    0下载:
  2. 以邻接多重表为存储结构,实现连通无向图的深度优先和广度优先遍历。以用户指定的结点为起点,分别输出每种遍历下的结点访问序列和相应生成树的边集。-To the adjacent multi-table storage structure, connectivity undirected graph depth first and breadth-first traversal. User-specified node as a starting point, respectively, under
  3. 所属分类:CSharp

    • 发布日期:2017-04-15
    • 文件大小:6778
    • 提供者:liuxuqi
  1. Graph

    0下载:
  2. 无向图 无向网 有向图 有向网的邻接矩阵的实现-Undirected graph directed graph undirected network with the network implementation of the adjacency matrix
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:1400
    • 提供者:APurple
  1. Kruskal

    0下载:
  2. Kruskal算法 求解无向图的最小生成树-Kruskal algorithm for minimum spanning tree of an undirected graph
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:556
    • 提供者:孙张
  1. createtu

    0下载:
  2. 用邻接矩阵创建图并将其输出:本程序可以有四种图形式:分别为有向图,无向图,有向网,无向网;-Create a map with the adjacency matrix and the output: This program can graph four forms: namely a directed graph, undirected graph, the network, not to the network
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:1064
    • 提供者:langziaimama
  1. prim

    0下载:
  2. 建立无向图,初始化矩阵,输出无向图的邻接矩阵-The establishment of an undirected graph, initialize the matrix, the output adjacency matrix of undirected graph
  3. 所属分类:Data structs

    • 发布日期:2017-05-01
    • 文件大小:516231
    • 提供者:storm
  1. ass4

    0下载:
  2. 数据结构作业4:以数偶的形式依次从键盘上输入一串数据。如:(A,B)为从起始结点(其数据场之值为一大写的英文字母 A ),到终止结点(其数据场之值为一大写的英文字母 B)的无向边。最后输入(Z,Z)表示输入结束。请用无向图的邻接多重表存储该无向图,并注意一定要使用动态存储结构。-Data Structure Assignment 4: The order of a few even in the form of a string of data input from the keyboard.
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:501548
    • 提供者:syes
  1. graph

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

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

    0下载:
  2. 从conf.txt文件读取无向图矩阵 PRIM算法分步实现最小生成树-File read from conf.txt PRIM algorithm for undirected graph matrix step by step to achieve the minimum spanning tree
  3. 所属分类:Special Effects

    • 发布日期:2017-05-10
    • 文件大小:2188733
    • 提供者:Simon
  1. DFTravel

    0下载:
  2. 代码可以实现有向图及无向图的深度优先收缩-Code can achieve a directed graph and undirected graph depth-first contraction
  3. 所属分类:CSharp

    • 发布日期:2017-04-04
    • 文件大小:179783
    • 提供者:isabel dong
  1. calculationofstrongly

    0下载:
  2. 无向图的强连通计算 高效率算法 图论算法-No calculation of strongly connected directed graph
  3. 所属分类:Algorithm

    • 发布日期:2017-04-03
    • 文件大小:941
    • 提供者:15868388608
  1. 2(2)

    0下载:
  2. 最小生成树之Prim算法 Prim算法用于求无向图的最小生成树 设图G =(V,E),其生成树的顶点集合为U。 ①、把v0放入U。 ②、在所有u∈U,v∈V-U的边(u,v)∈E中找一条最小权值的边,加入生成树。 ③、把②找到的边的v加入U集合。如果U集合已有n个元素,则结束,否则继续执行②。 其算法的时间复杂度为O(n^2) Prim算法实现: (1)集合:设置一个数组set(i=0,1,..,n-1),初始值为 0,代表对
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:875
    • 提供者:杨博文
  1. YEN

    0下载:
  2. 在无向图中,用YEN算法实现前求K短无环路径。-YEN
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:211490
    • 提供者:name
  1. tt0703

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

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

    1下载:
  2. 用c语言实现的校园导航,包含多个顶点的无向图。具体功能有,最短路径,最佳路径(汉米尔顿回路)。-With c language campus navigation, multiple vertices undirected graph. Specific function, shortest path, the best path (Hamilton circuit).
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:3032
    • 提供者:张洁
  1. campus_tour_program

    1下载:
  2. 问题描述:用无向图表示你所在学校的校园景点平面图,图中顶点表示主要景点,存放景点的编号、名称、简介等。 设计要求: 1.查询各景点的相关信息; 2.查询图中任意两个景点间的最短路径; 3.查询图中任意两个景点间的所有路径。 -Problem Descr iption: The undirected graph that spot in your school campus plan, said the main attractions of vertices, the num
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:268896
    • 提供者:zilin
  1. Graphtraversal

    0下载:
  2. 输入给定的有向图或无向图实现深度优先遍历和广度优先遍历-Graph Traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:14143
    • 提供者:Sisley95
  1. Prim

    0下载:
  2. 最小生成树的Prim算法的实现。这里是对无向图最小生成树的实现。-Prim minimum spanning tree algorithm. There is no realization of the minimum spanning tree graph.
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1220
    • 提供者:lanboyj
  1. nixushuzuiduanlujing

    0下载:
  2. 该文件夹中包括几个acm比赛中用到的模板 求逆序数,无向图的bfs收索,有向图中的两点间的最短距离。希望对大家有用。-The folder includes several templates used in the game acm find reverse numbers, income bfs undirected graph cable, directed graph in the shortest distance between two points. Hope that use
  3. 所属分类:Other systems

    • 发布日期:2017-03-27
    • 文件大小:1934
    • 提供者:shengyang
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 26 »
搜珍网 www.dssz.com