CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - edges

搜索资源列表

  1. fuc

    0下载:
  2. 破圈法,边割法,避圈法的比较: 当图为连通且边树较少时,用破圈法较好 当图边数较多时,使用边割法和避圈法较好 -breaking lap, cutting edge, avoiding the comparison circle : When map is connected and fewer side tree, breaking lap with a better method when the edges of a few more, the use of cut
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:5978
    • 提供者:aa
  1. tudeshengdubianli

    0下载:
  2. 图的深度遍历,用二叉树实现,输入时要遵循二叉树的顶点和边数的对应关系-traverse the depth map, using binary tree realize that the importation of binary tree to be followed when the number of vertices and edges of the relationship
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1121
    • 提供者:朱建鲁
  1. dijkstraautomatique

    0下载:
  2. dijkstra算法,windows和linux下编译通过,可以从文件读取数据,也可以手动输入边数及点数,自动生成边长。-dijkstra algorithm, windows and linux under compile, can read data from the paper, can also manually input edges and points, automatic generation length.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2037
    • 提供者:YIN WEI
  1. Bellman_Fordautomatique

    0下载:
  2. bellmanford算法,windows和linux下编译通过,可以从文件读取数据,也可以手动输入边数及点数,自动生成边长。-bellmanford algorithm, windows and linux under compile, can read data from the paper, can also manually input edges and points, automatic generation length.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2038
    • 提供者:YIN WEI
  1. kthtree

    0下载:
  2. kthtree问题 给定一棵有向树T,树T 中每个顶点u都有一个权w(u);树的每条边(u,v)也都有一个 非负边长d(u,v)。有向树T的每个顶点u 可以看作客户,其服务需求量为w(u)。每条边(u,v)的边长d(u,v) 可以看作运输费用。如果在顶点u 处未设置服务机构,则将顶点u 处的服务需求沿有向树的边(u,v)转移到顶点v 处服务机构需付出的服务转移费用为w(u)*d(u,v)。 树根处已设置了服务机构,现在要在树T中增设k处服务机构,使得整棵树T 的服务转移费用最小-kt
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:218097
    • 提供者:wu
  1. 图的遍历演示

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

    • 发布日期:2008-10-13
    • 文件大小:2575
    • 提供者:雨后阳光
  1. shujujiegou

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

    • 发布日期:2017-04-03
    • 文件大小:7635
    • 提供者:李朗
  1. playMax

    0下载:
  2. 用回溯法和递归调用的思想实现了多边形游戏算法,用codeblocks开发。输入多边形的N个定点的数值和N条边的运算符,可计算任意断开一条边后计算所得的最大值。-Backtracking and recursive calls with the idea to achieve a polygon game algorithm, using codeblocks development. Input polygon fixed values ​ ​ of N and N edge
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:7757
    • 提供者:pu
  1. Dijkstra

    0下载:
  2. 这个例程,会在多条相同最短路径中选出边数最少的路径.只是改变path域即可在遍历的时候访问到边数少的路径.核心的思想,就是建立一个数组,存放从出发点到当前顶点的最短路径边数.通过每次查看最短路径相同的情况, 即dv + cvw = dw.时,如果 Count[v] + 1 < Count[w]时,就执行 Count[w] = Count[v] + 1, 同时 w -> path = c.-This routine will be the same number of shortest
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:885
    • 提供者:php0
  1. 612109301

    0下载:
  2. 要求采用邻接矩阵作为无向图的存储结构,邻接表作为有向图的存储结构,完成无向图和有向图的建立,并对建立好的图进行深度和广度优先遍历。具体实现要求: 1. 通过键盘输入图的顶点和边信息,分别构造一个无向图的邻接矩阵和一个有向图的邻接表。 2. 分别对建立好的两个图进行深度和广度优先遍历,输出相应的遍历序列。 3. 统计两个图的连通分量的个数。 -Require the use of adjacency matrix as the storage structure of an und
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:393938
    • 提供者:风雷
  1. prim

    1下载:
  2. (1)利用普里姆算法求网的最小生成树 (2)实现教科书中定义的抽象数据类型mfset。以此表示构造生成树过 程中的连通分量。 (3)以文本形式输出生成树中各条边以及他们的权值-(1) the use of prim algorithm for minimum spanning tree network (2) the realization of the textbook definition of abstract data types mfset. Spanning tree s
  3. 所属分类:Data structs

    • 发布日期:2017-03-21
    • 文件大小:1266
    • 提供者:xinghenzhai
  1. btree

    0下载:
  2. Trees are natural structures for representing certain kinds of hierarchical data. A (rooted) tree consists of a set of nodes (or vertices) and a set of arcs (or edges). -Trees are natural structures for representing certain kinds of hierarchical data
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:16180
    • 提供者:
  1. minimal_spanning_tree(Prims)

    0下载:
  2. 最小生成树问题 问题描述:若要在n个城市之间架设通讯网络,只需要架设n-1条线路即可。如何以最低的经济代价建设这个通讯网,是一个网的最小生成树问题。 设计要求:利用Prims算法求网的最小生成树;以文本形式输出生成树中各条边以及它们的权值。 -The issue of minimum spanning tree problem Descr iption: n To set up a communication network between cities, only need to
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:17172
    • 提供者:利莉
  1. grath

    0下载:
  2. 用来建立一个图,输入边和权值,可以求得最短路径-Used to set up a map, enter the edges and weights, you can find the shortest path
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:2909
    • 提供者:寒风
  1. draw-tree

    0下载:
  2. 伸展树,基本数据结构,The tree is drawn in such a way that both of the edges down from a node are the same length. This length is the minimum such that the two subtrees are separated by at least two blanks.-The tree is drawn in such a way that both of the edges
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3659
    • 提供者:GK
  1. RoutingSystem

    0下载:
  2. The task in this assignment is to implement an airline routing system. Your system should be able to read in a ight network as a graph from a le, where airports are represented as vertices and ights between airports are represented as ed
  3. 所属分类:Data structs

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

    0下载:
  2. 克鲁斯卡尔算法思想.cpp int seekedge(EDGE * (&a), int n) void bubble(EDGE * (&a), int size) void searchandjoin(EDGE * (&a1), int k) // a1是图边集头指针,a2是最小生成树边集的头指针,k为所要删的边 void storepicture(EDGE * (&a), int n, VERTEX *b, int m) -Thinking of Kruskal algor
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:24573
    • 提供者:李虚东
  1. Kruskal

    1下载:
  2. 本文件是数据结构中很重要的一个图的Kruskal算法。Kruskal算法每次选择n- 1条边,所使用的贪婪准则是:从剩下的边中选择一条不会产生环路的具有最小耗费的边加入已选择的边的集合中。将文件编译,可完成Kruskal算法-This document is a very important data structure of a graph algorithm of Kruskal. Kruskal algorithm for each choice of n-1 edges, the gre
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:4460
    • 提供者:吉铭
  1. schoolguide

    0下载:
  2. 用无向网表示你所在学校的校园景点平面图,图中顶点表示主要景点,存放景点的编号、名称、简介等信息,图中的边表示景点间的道路,存放路径长度等信息。要求能够回答有关景点介绍、游览路径等问题。--Free to the net means that the school campus attractions in your plans, the graph vertices of their main attractions, storage spots number, name, profile an
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:18157
    • 提供者:沈静
  1. SchoolScenes_Guide_PerfectVersion

    0下载:
  2. 用无向网表示你所在学校的校园景点平面图,图中顶点表示主要景点,存放景点的编号、名称、简介等信息,图中的边表示景点间的道路,存放路径长度信息等。 要求事先一下功能: (1) 查询各顶点的相关信息。 (2) 查询图中任意两个景点之间的最短路径。 (3) 查询图中任意两个景点之间的所有路径。 --Free to the net means that the school campus attractions in your plans, the graph vertices of
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:519775
    • 提供者:欧阳云飞
« 12 3 4 5 »
搜珍网 www.dssz.com