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

搜索资源列表

  1. path.cpp

    0下载:
  2. 试在虚基类Network中增加一个函数FindPaths,对于给定的无向图G 和G 中的2 个顶点v和w,输出G 中从v到w的一条简单路径。若有多条可能路径,则输出任意一条。 -test in the virtual base class to add a Network Function FindPaths. For a given undirected graph G and G, the two vertices v, w, output from the G v w to a si
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-12
    • 文件大小:4564
    • 提供者:Nouth
  1. base

    0下载:
  2. 基本数据结构类的定义和实现: MyStack ,MyPoint,MyArc,Graph,MyQueuesMyStack为构造的一个通用的C++模版堆栈类 MyPoint为一个坐标结构MyArc为带权的边类Graph为临街矩阵表示的图MyQueues为按权值顺序存储的边的队列-basic data structure class definition and realization : MyStack, MyPoint, MyArc, Graph, MyQueuesMyStack for a ge
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2165
    • 提供者:wang
  1. data_struct7

    0下载:
  2. 数据结构课后设计题第七章 7.22③ 试基于图的深度优先搜索策略写一算法, 判别以邻接表方式存储的有向图中是否存在由顶 点vi到顶点vj的路径(i≠j)。 注意:算法中涉及 的图的基本操作必须在此存储结构上实现。 实现下列函数: Status DfsReachable(ALGraph g, int i, int j) -Data structure design question after class Chapter 7.22 ③ test graph-b
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:3033
    • 提供者:W.Y.T.S
  1. Graph

    0下载:
  2. 是一个在学习数据结构时编写的图结构,主要是用两种方法生成需要的图结构,其中有一个头文件都注释了,要是要使用的话,只需要将另一个头文件注释并把这个取消注释,在main方法中改一个类名就好了-Is a data structure in the learning plan to prepare the structure, is mainly used two methods to generate the need for the graph structure, in which there i
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:7628
    • 提供者:王龙飞
  1. Graph

    0下载:
  2. 图类:一个处理数据结构中图的基础类方法。这个类包括对图的最完整建模算法-Graphs: a graph data structure processing base class methods. This class includes the most complete modeling algorithm diagram
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:17921
    • 提供者:Johnny
  1. EXTENDS

    0下载:
  2. C++入门实例,对继承与组合的初步应用。可以让用户选择在指定位置打印出不同的图形,如正立等腰三角形,倒立等腰三角形,矩形,正方形、菱形和多边形。图形由随机选择的*或者#组成。 请为每种图形设计一个类,这些类之间的关系可能是继承或者组合。  每个类需要能保存该图形对象的参数,改变参数的方法以及在屏幕上用字符打印该图形的方法。  程序根据用户的选择产生一个新图形的对象,为该对象设置参数并打印。 -C++ Getting Started ex
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:5372
    • 提供者:周子
  1. GraphAlgorithm

    0下载:
  2. 图论算法,acm的图论类的模板,有一些经典算法作为例子,实现过程经过了实际题目的验证保证准确-Graph algorithm, acm the graph of the class template, some of the classic algorithm as an example, after the actual implementation process to ensure accurate verification of title
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:15934
    • 提供者:McFn
  1. vectorpy.tar

    0下载:
  2. Vector and graph cla-Vector and graph class
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2231
    • 提供者:Flora
  1. DataStructure

    0下载:
  2. 用C++编写的常用数据结构类,包括链表、堆栈、队列、二叉树、图的基本算法等-Commonly used data structures written in C++ class, including lists, stacks, queues, binary tree, graph the basic algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-05-01
    • 文件大小:780930
    • 提供者:刘亮
  1. adjListGraph

    0下载:
  2. 本程序基于C++利用邻接链表实现了图的基本数据结构,有向图和无向图均适用,包含了图的存储,图的插入,图的删除等基本操作,可供数据结构学习之用。-This program realizes the class of graph using adjacent list. The fundamental function includes the storage of graph, inserting and removing edges from the graph, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1674
    • 提供者:梁清凯
  1. ~~~

    0下载:
  2. 能够实现邻接矩阵表示的图的类定义及其实现。-Adjacency matrix of the graph that the class definition and its implementation
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:1890
    • 提供者:占一平
  1. linwenzhong-Graphlnk

    0下载:
  2. 图的存储、遍历及其应用 掌握图的存储表示及基本操作的实现 , 掌握图的深度优先遍历和广度优先遍历的实现,图的邻接表表示,运用C++类实现图的类定义及基本操作算法。-Map storage, traversal and its application to master storage representation of the map and the realization of the basic operations, master graph depth-first travers
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:4186
    • 提供者:林文众
  1. 2006

    0下载:
  2. 国家集训队2006论文集 陈启峰:《“约制、放宽”方法在解题中的应用》 陈首元:《维护森林连通性——动态树》 冯威:《数与图的完美结合——浅析差分约束系统》 高逸涵:《对于一道题目的深入分析》 胡伟栋:《演讲的若干建议》 黄劲松:《贪婪的动态规划》 黄晓愉:《深度优先搜索问题的优化技巧》 贾由:《由图论算法浅析算法优化》 李天翼:《从特殊情况考虑》 龙凡:《一类猜数问题的研究》 汤泽:《浅析队列在一类单调性问题中的应用》 唐文斌:《“调整”
  3. 所属分类:Data structs

    • 发布日期:2017-05-26
    • 文件大小:9092180
    • 提供者:sxy
  1. DFS-BFS

    0下载:
  2. 2014年北京大学暑假公开课算法讲解课件之搜索,讲解详细,分析透彻-2014 Peking University summer open class algorithm courseware on the graph theory, explain the detailed, thorough analysis
  3. 所属分类:Data structs

    • 发布日期:2017-05-13
    • 文件大小:2740970
    • 提供者:小明
  1. Graph-theory

    0下载:
  2. 2014年北京大学暑假公开课算法讲解课件之图论,讲解详细,分析透彻-2014 Peking University summer open class algorithm courseware on the graph theory, explain the detailed, thorough analysis
  3. 所属分类:Data structs

    • 发布日期:2017-05-14
    • 文件大小:3550426
    • 提供者:小明
  1. 第三次实验课(1)

    0下载:
  2. 1、定义邻接矩阵存储的图类Graph_Matrix . 2、实验验证如下算法的正确性、各种功能及指标: 1)创建一个邻接矩阵存储的图; 2)返回图中指定边的权值; 3)查找图中某顶点的第一个邻接顶点、某顶点关于另一个顶点的下一个邻接顶点序号; 3、4)图的深度优先遍历; 5)基于普里姆算法求最小支撑树。【选作】(1. Define the graph class Graph_Matrix which is stored by the adjacency matrix. 2. The
  3. 所属分类:数据结构

    • 发布日期:2018-04-28
    • 文件大小:2328576
    • 提供者:kaiser1998
  1. storaga

    0下载:
  2. 运筹学运用我上传的graph class文件来解决网络图的问题()
  3. 所属分类:数据结构

    • 发布日期:2018-05-01
    • 文件大小:1024
    • 提供者:jeapwqis
搜珍网 www.dssz.com