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

搜索资源列表

  1. simplicityAlgorithm3

    0下载:
  2. /*用单纯形算法求解多元函数极值计算机程序代码*/ /************************ *试用单纯形法求目标函数: *f(x)= 4(x1 -5)*(x1 -5) + (x2 -6)*(x1 -5) *的极小值 *************************/-/ * Use simplex algorithm for multi-function extremum computer code * / /********** ************
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:172053
    • 提供者:刘向
  1. PackageProblem

    2下载:
  2. 实现背包问题 package problem 1. 问题描述 假设有一个能装入总体积为T的背包和n件体积分别为w1 , w2 , … , wn 的物品,能否从n件物品中挑选若干件恰好装满背包,即使w1 +w2 + … + wn=T,要求找出所有满足上述条件的解。例如:当T=10,各件物品的体积{1,8,4,3,5,2}时,可找到下列4组解: (1,4,3,2)、(1,4,5)、(8,2)、(3,5,2)。 2. 基本要求 读入T、n、w1 , w2 , … , wn
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9296
    • 提供者:李昭明
  1. automix

    0下载:
  2. he AutoMix package is a C program for Unix-like systems, implementing the automatic reversible jump MCMC sampler of the same name described in Chapters 4, 5, and 6 of David Hastie s Ph.D. thesis-he AutoMix package is a C program for Unix-l ike s
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:93856
    • 提供者:sjtuzyk
  1. fractions_compositor

    0下载:
  2. 写一个程序,列出在0和1之间的所有分母不大于N的最简分数,下面是N=5时的情况: 0/1 1/5 1/4 1/3 2/5 1/2 3/5 2/3 3/4 4/5 1/1 总共有11个分数! 还需要进行排序。-write a procedure set out in the 0 and 1 denominator between all the N is not greater than the most simple level, Below is N = 5:00 of : 0 /
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6788
    • 提供者:刘华
  1. 1800Decorations

    0下载:
  2. 该源码是一个问题的解决方法。问题是给你个长为L的串,串中可以出现n种字符,还给出m个子串,求有多少个长为n的只由这些字串组成的串。输入例子:4 5 6 ABB BCA BCD CAB CDD DDA 结果为2.而5 4 5 E D C B A的结果为625-source of the problem is a solution. The problem is that you have the head of the L series, the series can occur n ch
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:8101
    • 提供者:姚秋林
  1. 24dian.tar

    0下载:
  2. 用python编写的24点程序,改进后同时可以计算寻找诸如(((1+2)*3-4)+5*6*7+8)*9 = 2007这样的解法-python with 24 points prepared by the procedures, improved for the same time can be calculated as (((1) * 3-4) 5 6 * 7 * 8) = 2007 * 9 this The Solution
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:956
    • 提供者:funlove
  1. RKF4.5

    0下载:
  2. ronge-kutta 数值分析问题,RKF4.5,和RKF5.4。-ronge - kutta numerical analysis, RKF4.5 and RKF5.4.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:1181
    • 提供者:tanyue
  1. DavidPeterman_C

    0下载:
  2. 问题描述: 虽然离开浦口了,但在浦口校区后山大家还都有印象吧,可你知道有一座小山在冬天下大雪的时候是可以滑雪的,SEU很喜欢滑雪,这并不奇怪, 因为滑雪的确很刺激,可是为了获得速度,滑雪区域必须向下倾斜,而且当你到底时不得不重新走到上面重滑。SEU想知道在这个区域中最长的滑坡。区域由一个二维数组给出。数组的每一个数字表示山坡上一个点的高度。 下面是一个例子: 一个人可以从一个点滑向上下左右相邻的四个点之一,当且仅当高度减小。在上面的例子中,一条可行的滑坡为24-17-16-
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:780
    • 提供者:laochao
  1. 决策树的 C4.5

    0下载:
  2. 决策树的 C 4.5 Vc++实现的
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2011-12-06
    • 文件大小:149289
    • 提供者:571284
  1. 5.6.1

    0下载:
  2. 1、二叉树的创建和遍历演示 1)从键盘输入二叉树的各结点值,按先序递归方式创建二叉树 2)分别实现先序、中序、后序递归遍历二叉树 3)输出二叉树的按层次遍历序列 4)输出二叉树的中序非递归遍历下的结点访问次序-1, binary tree traversal of the creation and demonstration of 1) from the keyboard input of the binary tree node value, according to firs
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1752
    • 提供者:赖毅
  1. 4

    0下载:
  2. 此算法为最小二乘辅助变量法。uy2为含噪声数据,n=2,噪声模型n=2。左为输出数据,右为输入数据。k=2,3,4,5-Least-squares algorithm for the auxiliary variables. uy2 for data containing noise, n = 2, the noise model n = 2. Output data for the left and right for the input data. k = 2,3,4,5, etc.
  3. 所属分类:matlab

    • 发布日期:2017-03-31
    • 文件大小:1511
    • 提供者:Lightning
  1. gpac-0.4.5

    0下载:
  2. gpac solution for MM sdfsd
  3. 所属分类:Data structs

    • 发布日期:2017-05-19
    • 文件大小:5192282
    • 提供者:vijay
  1. Algorithms.in.C.Parts.1-4.Fundamentals.Data.Struct

    2下载:
  2. 经典算法书(中文版).《C算法》介绍了当今最重要的算法,共分3卷,本书是第1卷。第1卷分4部分、共16章。第一部分“基础知识”(第1~2章)介绍了基本算法分析原理。第二部分“数据结构”(第3~5章)讲解算法分析中必须掌握的数据结构知识。主要包括基本数据结构、抽象数据结构、递归和树。第三部分“排序”(第6~11章)按章节顺序分别讨论了基本排序方法(如选择排序、插入排序、冒泡排序、希尔排序等)、快速排序方法,归并和归并排序方法、优先队列与堆排序方法、基数排序方法以及特殊目的排序方法,并比较了各种排序
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-06-12
    • 文件大小:19883343
    • 提供者:wang
  1. shujujiegou(4~5)

    0下载:
  2. 电子科技大学数据结构课件,第4章,,第五章。-University of Electronic Science and Technology data structures courseware, Chapter 4, chap.
  3. 所属分类:Data structs

    • 发布日期:2017-05-09
    • 文件大小:1964858
    • 提供者:邹文
  1. ssd5_exercise456

    0下载:
  2. ssd5的练习4、5、6的答案。。希望有帮助-ssd5 exercises 4,5,6 answer. . Hope that helps. .
  3. 所属分类:Data structs

    • 发布日期:2017-05-15
    • 文件大小:3628603
    • 提供者:star
  1. 15-4

    1下载:
  2. Example 编译:mpicc mst.c mst 运行:本实例中使用了5个处理器。 mpirun –np 5 mst 运行结果: Input the size of matrix:9 0 4 5 8 6 2 5 7 3 5 0 8 3 1 6 4 9 5 7 2 0 6 4 1 3 8 9 4 5 6 0 5 7 2 1 6 4 5 8 7 0 2 3 4 7 4 1 4 7 5 0 7 8 4 7 8 9 3 2 1 0 6 7 4 2
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-08
    • 文件大小:2161
    • 提供者:aaa
  1. Vedio-about-Matlab-GUI(4-5)

    0下载:
  2. 本资料关于MATLAT GUI,具体为视频教学,其中包括简单GUI的建立及相应的代码编写。(4-5)-The information on MATLAT GUI, specifically for the video teaching, including the establishment of a simple GUI and the corresponding code is written. (4-5)
  3. 所属分类:matlab

    • 发布日期:2017-05-31
    • 文件大小:13549617
    • 提供者:湘彬
  1. c4.5

    0下载:
  2. c 4.5 分类算法 数据挖掘 源码-c 4.5 source data mining classification algorithms
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-27
    • 文件大小:160919
    • 提供者:j
  1. matcom4.5

    0下载:
  2. matcam 4.5 安装及下载指导 链接matlab和visual,实现matlab的高级编程-matcam 4.5 matlab和visual
  3. 所属分类:matlab

    • 发布日期:2017-03-30
    • 文件大小:529853
    • 提供者:玛丽
  1. 4-5-Programing-Storing

    0下载:
  2. 4-5 Programing Storing
  3. 所属分类:Data structs

    • 发布日期:2017-12-06
    • 文件大小:1873
    • 提供者:henry
« 12 3 4 5 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com