-
快速蚁群算法
这一项目提出了蚂蚁新论比以往的人工蚂蚁认同合作通过共享内存的进程更具一般性的系统,确定人工蚂蚁与通过共享内存和一个女王的过程,统筹蚂蚁流程合作过程中一个新的起点。然后,我们提出FANT,基于蚂蚁系统的新启发式。该技术是非常简单的实现,同时结合一些搜索策略,如集约化,多样化和学习机制。 FANT是用来解决各种硬分配问题,并显示出与使用各种元启发式其它实现中非常有竞争力。
- 2022-03-25 08:24:39下载
- 积分:1
-
隐式消元法计算程序 比较精炼
隐式消元法计算程序 比较精炼 -implicit elimination method calculation procedures more refined
- 2022-02-22 08:20:03下载
- 积分:1
-
用C++写的矩阵和矢量运算库
用C++写的矩阵和矢量运算库-C write the matrix and vector arithmetic library
- 2023-01-20 04:05:04下载
- 积分:1
-
gene recombination value calculation
基因重组值的计算-gene recombination value calculation
- 2022-07-02 08:09:54下载
- 积分:1
-
顺序队列C实现
#include "stdio.h" #include "stdlib.h" #include "io.h" #include "math.h" #include "time.h"#define OK 1#define ERROR 0#define TRUE 1#define FALSE 0#define MAXSIZE 20 /* 存储空间初始分配量 */typedef int Status; typedef int QElemType; /* QElemType类型根据实际情况而定,这里假设为int *//* 循环队列的顺序存储结构 */typedef struct{ QElemType data[MAXSIZE]; int front; /* 头指针 */ int rear; /* 尾指针,若队列不空,指向队列尾元素的下一个位置 */}SqQueue;Status visit(QElemType c){ printf("%d ",c); return OK;}/* 初始化一个空队列Q */Status Init
- 2022-08-13 11:29:01下载
- 积分:1
-
defequ is used solution of partial differential equations solver. Autonomy defin...
defequ,是用来解偏微分方程的求解器。能够自主定义边界条件,并且可以得到图示的效果。-defequ is used solution of partial differential equations solver. Autonomy definition of boundary conditions, and can be Picture shows the effect.
- 2022-07-17 21:55:18下载
- 积分:1
-
区间消去法,主要用于解决优化问题中的区间确定问题
区间消去法,主要用于解决优化问题中的区间确定问题-Interval elimination method, mainly for optimization problems to resolve the issues identified in the interval
- 2022-07-03 11:07:21下载
- 积分:1
-
ID3决策树matlab源码
这个是使用Matlab实现ID3决策树的源代码,注释的非常清楚。选择了三组数据。非常容易懂。
- 2022-03-07 11:10:10下载
- 积分:1
-
计算方法经典算法(弦截法二分法牛顿迭代法龙贝格算法)
计算方法经典算法(弦截法二分法牛顿迭代法龙贝格算法)-classic calculation algorithm (xianjie Act dichotomy Newton Romberg algorithm)
- 2022-04-07 16:00:07下载
- 积分:1
-
在 c + + 中的 SHA1 算法
数字签名是一个数学计划演示数字消息或文档的真实性。有效的数字签名给的收件人的理由相信该消息由已知发件人,这样发件人不能否认曾经发送过 (认证和不可否认性) 的消息,该消息过境 (完整性) 中没被更改。软件分发、 金融交易和其他重要探测伪造或篡改的情况,通常使用数字签名。
- 2022-02-26 02:12:01下载
- 积分:1