CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - node degree

搜索资源列表

  1. node-degree

    2下载:
  2. 复杂网络 节点度统计程序 C++ 网络中的节点度指与节点相连的边的个数-Complex statistical procedures for network nodes C++ Network nodes and node degrees refers to the number of connected edge
  3. 所属分类:Other systems

    • 发布日期:2015-12-09
    • 文件大小:2.62kb
    • 提供者:owen
  1. include

    0下载:
  2. 根据输入的整数对,输出一个图形的邻接矩阵。并求出各结点的出度和入度;判断邻接矩阵是否是可达性矩阵,从而判断图是否是连通图。-The input of integer pair, the output of a graph adjacency matrix. And obtained the degree of each node and the in-degree determine whether it is up to the adjacency matrix matrix, which
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:3.9kb
    • 提供者:shirly
  1. node-attack

    0下载:
  2. 由于Pajek计算出网络没受到攻击网络的最短路径矩阵文件和分别收到不同次攻击后的最短路劲矩阵文件(Shortest Path Length Matrix)。先将其文件(按照攻击的次数命名为:0.txt 、1.txt 、2.txt…)拷贝到该C语言程序同个文件夹中,运行改程序,输入要计算的攻击次和每次攻击的节点数,该程序就会自动收索文件,并完成计算出数据的有效性能模型、平均最短路径和输电效益模型的值在同文件夹里的jieguo.txt中输出。-complexity network degree an
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-10
    • 文件大小:132.96kb
    • 提供者:潘高峰
  1. Exchange

    0下载:
  2. 此程序用来处理复杂网络中的交换节点的度的处理-This procedure is used to handle the processing of the complex network switching node degree
  3. 所属分类:Other systems

    • 发布日期:2017-11-30
    • 文件大小:1.17kb
    • 提供者:邱路
  1. Locate

    0下载:
  2.   设有一头指针为L的带有表头结点的非循环双向链表,其每个结点中除有prev(前驱指针),data(数据)和next(后继指针)域外,还有一个访问频度域freq。在链表被起用前,其值均初始化为零。每当在链表中进行一次Locate(L,x)运算时,令元素值为x的结点中freq域的值增1,并使此链表中结点保持按访问频度非增(递减)的顺序排列,同时最近访问的结点排在频度相同的结点的最后,以便使频繁访问的结点总是靠近表头。试编写符合上述要求的Locate(L,x)运算的算法,该运算为函数过程,返回找到结
  3. 所属分类:CSharp

    • 发布日期:2016-01-08
    • 文件大小:1kb
    • 提供者:hac
  1. dajacency

    1下载:
  2. 有关离散数学的编程 实验四:邻接矩阵 1.编写一段代码,接收键盘的输入定点的数量,并以输入的整数对作为边来建立图形的邻接矩阵(无向权重图)。 例如 : 5,6,12 表示定点5和定点6间有边,边的权重为 12。 2 打印出邻接矩阵。 3.根据第一步得到的邻接矩阵计算每个结点的度数。 -Experiment IV: adjacency matrix 1. Write a piece of code, the number of sentinel receive
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:775byte
    • 提供者:紫薇花
  1. Binary_Tree

    0下载:
  2. 二叉树是每个节点最多有两个子树的有序树。通常子树被称作“左子树”(left subtree)和“右子树”(right subtree)。二叉树常被用于实现二叉查找树和二叉堆。值得注意的是,二叉树不是树的特殊情形。在图论中,二叉树是一个连通的无环图,并且每一个顶点的度不大于3。-Each node in a binary tree is an ordered tree up to two sub-tree. Usually sub-tree is called " left sub-tre
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:5.1kb
    • 提供者:wlx
  1. add_edge

    0下载:
  2. 在社会网络中,采用MATLAB计算图的连通性和节点平均度数的两个算法-Two algorithms in the social network, using MATLAB computing node graph connectivity and average degree of
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1015byte
    • 提供者:赵利民
  1. BiTree

    0下载:
  2. 编程实现二叉树的a建立,b/c先序、中序、后序、层序遍历(递归和非递归方法),d二 叉树的高度、e繁茂度,f交换左右子树,g统计叶子节点的数目,h判断是否为完全二叉树, i按树的形态在屏幕上打印输出。 [基本要求] (1) 从文件中读入建树信息,树的节点数目不小于20个,树的高度不小于4。 (2) 建树信息采用两行英文字符表示,每个英文字符代表一个结点,第 1 行为树的 中序遍历结果,第 2 行为树的后序遍历结果。-Programming a binary tree
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-28
    • 文件大小:227.94kb
    • 提供者:真真
  1. binaryTree

    0下载:
  2. 基于Visual C++的一个二叉树的程序,能实现从文件输入和数组两种方法建立二叉树,实现二叉树的前,中,后序遍历,广义表形式的输出,结点个数的统计,结点度的计算,树的高度计算,最大值的计算。-he establishment of the two fork tree the file input and an array of two methods, the realization of the two binary tree before, after the traversal, th
  3. 所属分类:CSharp

    • 发布日期:2017-05-07
    • 文件大小:1001.69kb
    • 提供者:易新宇
  1. benchmark

    2下载:
  2. LFR benchmark用于产生LFR基准测试网络,用于复杂网络社区检测中算法的测试网络。-This class of benchmark graphs called LFR have been proposed by Lancichinetti etal., in which the distributions of node degree and community size are both power laws with tunable exponents. It s modeled
  3. 所属分类:Other systems

    • 发布日期:2017-05-07
    • 文件大小:1.09mb
    • 提供者:liuhuan
  1. GraphPlotNodesDegreeDistribution

    0下载:
  2. 复杂网络中统计节点的度分布,同时画出节点度分布的源程序(The degree distribution of statistical nodes in complex networks, and draw the source of the degree of node distribution)
  3. 所属分类:其他

    • 发布日期:2017-12-23
    • 文件大小:1kb
    • 提供者:四哥
搜珍网 www.dssz.com