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

搜索资源列表

  1. prime_number_upright

    0下载:
  2. 质数竖式 下面的竖式是一个乘法运算问题,它的每个*号可以代入一个数字, 这个数字属于一个特定的由N个数字组成的集合。如果这个集合是{2,3,5,7}, 那么这个竖式称作“质数竖式”。 此程序就是为了解决这样一个问题而做的。-few quality below the vertical shaft is a multiplication problem, it * can each generation into a number of This is a specific N-d
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9097
    • 提供者:刘华
  1. Matching-2

    0下载:
  2. //给定整数n,产生所有[2n]上的匹配(matching) //将其视为一个所有块大小均为2的集合分拆 //以a_i表示其第i个元素所在的集合号 //输出格式为 a1 a2 a3 ... //满足 //a_{i+1} <= max { a1,a2,...a_i } + 1 -/ / a given integer n, have all [2n] on the matching (matching) / / will be considered as an all
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:1743
    • 提供者:侯庆虎
  1. 上大_net-0-1背包问题(回朔法)

    0下载:
  2. 0 / 1背包问题是一个N P-复杂问题,为了解决该问题,,将用回溯算法解决该问题。既然想选择一个对象的子集,将它们装入背包,以便获得的收益最大,则解空间应组织成子集树的形状(如图1 6 - 2所示)。该回溯算法与4 . 2节的装载问题很类似。首先形成一个递归算法,去找到可获得的最大收益。然后,对该算法加以改进,形成代码。改进后的代码可找到获得最大收益时包含在背包中的对象的集合。-0 / 1 knapsack problem is a P-complex issues, in order to
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:8915
    • 提供者:周易
  1. _Queen

    0下载:
  2. 非递归实现N皇后问题求解,输出全部求解的集合。-Non-recursive realization of N Queen s problem solving, solving a collection of all output.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:851
    • 提供者:MSM
  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. matlab-n-net-tl

    0下载:
  2. 神经网络是单个并行处理元素的集合,我们从生物学神经系统得到启发。在自然界,网 络功能主要由神经节决定,我们可以通过改变连接点的权重来训练神经网络完成特定的功能-A single neural network is a collection of parallel processing elements, we have been inspired by biological nervous system. In nature, the network function of a decisi
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-29
    • 文件大小:244653
    • 提供者:zgp
  1. hecheng

    1下载:
  2. 设关系A是从集合X={1,2,….,n}到集合Y={1,2,…..,m}的二元关系,而关系B是从集合Y到集合Z={1,2,….,p}的二元关系,求A与B的合成关系C。-A relationship is established from the set X = (1,2, ...., N) to the collection Y = (1,2, ... .., m) of binary relations, the relationship B is from a collection of Y
  3. 所属分类:matlab

    • 发布日期:2017-03-30
    • 文件大小:991
    • 提供者:ma
  1. Huffman

    0下载:
  2. 用vc++实现用最短路径查找哈弗曼树。n个权值构成n棵二叉树的集合F={T1, T2, …, Tn},其中每棵二叉树Ti中只有一个带树为Ti的根结点。-Achieved with the vc++ to find the shortest path tree Havermann. n-weight constitutes a collection of n binary trees F = (T1, T2, ..., Tn), which is only a Ti binary Each spe
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1017
    • 提供者:liangsi
  1. differentattractors

    0下载:
  2. This a collection of simulink blocks implementing simple nonlinear dynamical systems that generate attractors. Two types of general 3D simulink scopes (coded in the s-functions sfunxyz.m and sfunxyzd.m) are used to display in 3D, the evolution o
  3. 所属分类:matlab

    • 发布日期:2017-03-24
    • 文件大小:38040
    • 提供者:Mike Gao
  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. 382399785texture_code_and_thesis

    0下载:
  2. 4个纹理分割算法合集+n篇IEEE论文合集 对研究纹理分割的同学来说,很有效-4+ n texture segmentation algorithm Collection collection of research papers IEEE paper texture segmentation students, it is very effective
  3. 所属分类:matlab

    • 发布日期:2017-06-17
    • 文件大小:26684571
    • 提供者:guyaxiang
  1. 0910605

    0下载:
  2. *编写递归函数,求n个元素集合的所有子集。 不妨令集合元素为小写字母,原集合为{ a , b , …, a + n - 1-* Write a recursive function, find the set of all n-element subset. May wish to make a collection of elements to lowercase letters, the original set is {' a' , ' b' , ..., &#
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-14
    • 文件大小:2968
    • 提供者:rocaria
  1. shiyan3

    0下载:
  2. 设p1=(x1, y1), p2=(x2, y2), …, pn=(xn, yn)是平面上n个点构成的集合S,设计算法找出集合S中距离最近的点对。-Let p1 = (x1, y1), p2 = (x2, y2), ..., pn = (xn, yn) is the plane the set of n points S, S in the design algorithm to find the nearest collection point right.
  3. 所属分类:Algorithm

    • 发布日期:2017-05-01
    • 文件大小:912306
    • 提供者:zhong
  1. 48

    0下载:
  2. OFDM系统的PAPR性能与分割方式有关,但除此之外还与输入数据的子分组数V、相位集合中的相位数P以及子载波数量N有关。下面,对各种条件下PTS-OFDM系统的性能进行了仿真。-PAPR performance of OFDM systems and partitions the way, but in addition to the input data, the number of sub-group V, number of phases in the collection phase P
  3. 所属分类:matlab

    • 发布日期:2017-04-10
    • 文件大小:1386
    • 提供者:宫约
  1. t4

    0下载:
  2. 图4.7给出了V=4,相位集合的相位数分别为P=1、2、4、8时的随机分割的PTS-OFDM系统的CCDF的性能图。仿真参数:分割方法为随机分割,子载波数N=128,子载波数据采用QPSK调制,仿真的OFDM符号数为1000个。-Figure 4.7 shows the V = 4, the phase of the collection phase, respectively P = 1,2,4,8 were separated when the PTS-OFDM system perform
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:1877
    • 提供者:宫约
  1. Subset

    0下载:
  2. ary[]{1,2,3,4} 求打印其的所有子集。这是关于【幂集】的问题。 【幂集】包括【全集】和【空集】。对于有N个元素的集(/ □ \)合,它的幂集个数有2的N次方个。 比如这个例子,数组有4个元素。那么用4个位表示每一个元素(假设从左到右表示1234吧),0表示该数不存在,1表示存在。 则: 0000表示空集{}。 0001表示{4}。 0010表示{3}; 0011表示{3,4}; ………… 1110表示{1,2,3}; 1111表示{1,2,3,
  3. 所属分类:Algorithm

    • 发布日期:2017-04-02
    • 文件大小:741
    • 提供者:jinceon
  1. kruskal

    0下载:
  2. K r u s k a l算法每次选择n- 1条边,所使用的贪婪准则是:从剩下的边中选择一条不会产生环路的具有最小耗费的边加入已选择的边的集合中。注意到所选取的边若产生环路则不可能形成一棵生成树-K ruskal algorithm each time you select n-1 edges, using criteria of greed: from the left side, select a loop with no minimum spend has been selected to
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:644
    • 提供者:黄京
  1. prim

    0下载:
  2. 算法简介:Prim算法用于求无向图的最小生成树  设图G =(V,E),其生成树的顶点集合为U。    ①、把v0放入U。    ②、在所有u∈U,v∈V-U的边(u,v)∈E中找一条最小权值的边,加入生成树。    ③、把②找到的边的v加入U集合。如果U集合已有n个元素,则结束,否则继续执行②。    其算法的时间复杂度为O(|E|log|V|)-Introduction to Algorithms: Prim algorithm used to find the undire
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:628
    • 提供者:黄京
  1. 02

    0下载:
  2. 编写递归函数,求n个元素集合的所有子集。 不妨令集合元素为小写字母,原集合为{ a , b , …, a + n - 1}。 输入:input.txt,仅包含整数n(1-26)。 输出:若输入合法,输出集合的所有子集;否则输出"WRONG"。-Write a recursive function, an n-element set of all subset of. May wish to make a collection of elements to lowercase le
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1703
    • 提供者:princess36也
  1. all-elements-of-the-collection

    0下载:
  2. 编写递归函数,求n个元素集合的所有子集。不妨令集合元素为小写字母,原集合为{‘a’, ‘b’, …, ‘a’ + n - 1}。 输入:input.txt,仅包含整数n(1-26)。 输出:若输入合法,输出集合的所有子集;否则输出“WRONG”。子集输出格式为每行一个子集,空集用空行表示,非空集合每个元素间用一个空格间隔,最后一个元素之后不能有空格。-Write a recursive function of n a subset of all elements of the colle
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:302674
    • 提供者:刘慧
« 12 »
搜珍网 www.dssz.com