CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - Graph.d

搜索资源列表

  1. graph

    0下载:
  2. 在DOS下显示16位位图。(TC编译通过) 颜色与原位图的颜色不匹配,这只是一个测试程序,但在图像下面有一个调色板,可以通过w,a,s,d键选择两个颜色进行对调。每选择一种颜色后通过Q键确认。-DOS shown in the bitmap 16. (TC compiler through) colors and in situ does not match the color map, this is just a test procedure, but there is a palett
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:36408
    • 提供者:Lee
  1. Dijkstra

    0下载:
  2. 该问题为单元最短路经问题,求出一个有向图中两点之间权值最小的路径。 Dijkstra算法要求有向图中没有权值为负的边,有向图的信息由一个邻接表来表示,另外对每个顶点都设置一个属性d[v],描述从源点到v的最短路经上权值的上界。算法中设置一个顶点集合S,反复选择具有最短路经估计的顶点u∈V-S,并将u加入S中,算法中还用到了顶点的最小优先队列,排序关键字为顶点的d值。-The issue of the shortest path problem as a unit, find a directed
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-15
    • 文件大小:5710
    • 提供者:
  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. ShortRoute_Dijkstra

    0下载:
  2. 图论中最短路径计算D算法MATLAB源代码,修改网络上D算法的错误,并编写通用的MATLAB函数-Graph theory, shortest path algorithm for computing D MATLAB source code, modify the network D algorithm error, and the preparation of general MATLAB function
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:819
    • 提供者:michael
  1. NFA-to-DFA

    0下载:
  2. Theory: NDFA: It is a mathematical model containing 5 tuples a) Q- finite non empty set elements of which are called as state. b) T- set of alphabets. c) δ- is a mapping function Q*{T {λ}}*2Q d) S-start state i.e. S ε Q e) F- F (su
  3. 所属分类:Other systems

    • 发布日期:2017-03-28
    • 文件大小:1100
    • 提供者:Merwyn
  1. Storage-experiments-undirected-graph

    0下载:
  2. 1)将右图按照邻接多重表进行存储 2)依次输出顶点表中,各顶点的数据值 3)根据邻接多重表,依次输出依附于各顶点的边,如:A: (A,B), (A,E),(A,D)。 -1) to the right in accordance with the adjacent multi-table memory 2) sequentially outputs the vertex of the table, the data values ​ ​ of the vertic
  3. 所属分类:Other systems

    • 发布日期:2017-04-08
    • 文件大小:1784
    • 提供者:selena
  1. DSP_zuixiaoercheng

    0下载:
  2. 最小二乘窄带干扰消除。有用信号是一个点状目标,产生窄带干扰采样,产生高斯白噪声,设计一个M=100个系数的单步(D=1)线性预测器,再用得到的线性预测器来消除图中被干扰的信号x(n)中的噪声。-Least Squares narrowband interference cancellation. The useful signal is a target point, narrow-band interference is sampled Gaussian white noise, the de
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1230
    • 提供者:susan
  1. bandongtai

    0下载:
  2. 输入图的形状矩阵,矩阵用D表示,通过优化得到结果-Shape input graph matrix, the matrix D stands for, get results by optimizing
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:31166
    • 提供者:dalin
  1. d

    0下载:
  2. 求一个连通无向图的最小生成树的代价(图边权值为正整数)。-Seeking a communication cost of the minimum spanning tree of undirected graph (Figure right side is a positive integer).
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:714
    • 提供者:程志浩
  1. Untitled4

    0下载:
  2. 实验实现邻接表表示下无向图的广度优先遍历。 程序的输入是图的顶点序列和边序列(顶点序列以*为结束标志,边序列以-1,-1为结束标志)。程序的输出为图的邻接表和广度优先遍历序列。例如: 程序输入为: a b c d e f * 0,1 0,4 1,4 1,5 2,3 2,5 3,5 -1,-1 程序的输出为: the ALGraph is a 4 1 b
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:734
    • 提供者:王乐
  1. afafa

    1下载:
  2. 本实验实现邻接表表示下无向图的广度优先遍历。 程序的输入是图的顶点序列和边序列(顶点序列以*为结束标志,边序列以-1,-1为结束标志)。程序的输出为图的邻接表和广度优先遍历序列。例如: 程序输入为: a b c d e f * 0,1 0,4 1,4 1,5 2,3 2,5 3,5 -1,-1 程序的输出为: the ALGraph is a 4 1 b
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:733
    • 提供者:王乐
  1. hyy_d

    0下载:
  2. 图论D算法求最小路径,应用于路由选择问题(Graph theory, D algorithm, minimum path)
  3. 所属分类:其他

    • 发布日期:2017-12-30
    • 文件大小:1024
    • 提供者:小马毛
  1. Data.PS科学计算与绘图软件

    0下载:
  2. Data.PS功能简介:本数据处理软件内置表格编辑器,可以方便的进行数据输入输出;可以进行常见的(a)数值计算,如求解线性方程组、非线性方程组、常微分方程组、多项式求根、傅里叶变换、傅里叶逆变换、线性规划求解、多元线性回归和多元非线性回归参数拟合(20参数)、插值、微分、积分、求逆矩阵、矩阵特征值和特征向量、行列式值;(b)统计分析,统计描述、频数分布、假设检验、正态分布检验、二项式分布检验、泊松分布检验、相关性分析、方差分析;(c)6Sigman工具,过程能力CPK计算、测量系统分析MSA、公
  3. 所属分类:其他

    • 发布日期:2017-12-30
    • 文件大小:4073472
    • 提供者:w1w
搜珍网 www.dssz.com