-
约瑟夫问题
约瑟夫问题-Joseph
- 2022-10-21 18:15:03下载
- 积分:1
-
贝叶斯分类
类是将一个未知样本分到几个预先已知类的过程。
在众多的分类模型中,应用最为广泛的两种分类模型是决策树模型(Decision Tree Model)和朴素贝叶斯模型(Naive Bayesian Model,NBC)。
- 2022-03-31 03:45:25下载
- 积分:1
-
新型GA算法
一种好的改进遗传算法function [opy,optimy]=GA(pt,gennum,psize)% 输入参数:% pt m*n的加工时间矩阵(n是工件数目,m是机器数目)由已知给的T矩阵,可得n=100,m=10% gennum 迭代的次数(代数)% psize 种群的规模大小%输出参数:% opy 最优的Makespan值pc=0.9;%交叉因子pm=0.1;%变异因子[m,n]=size(pt);current_gen=1;%current_gen means the current generationnewgen=zeros(psize,n+1); %mewgen is the new generation of the populationnewgen(1:psize,1:n)=rand(psize,n);%主种群初始化,0-1之间的随机数 %Generalize the initial groupfather=zeros(2,n); %father is used to store the two genes for crossover and mutation avgen=zeros(1,gennum); %avgen is the matrix of the average of all the generationsoptimx=zeros(1,n);optimy=ones(1,gennum);%Generalize the initial groupfor i=1:psize [Ya,pop(i,1:n)]=sort(newgen(i,1:n));%种群排序,实数编码转换为自然数编码 随机生成的0-1之间的小数进行排序然后取每个从小到大数对应的位置 newg
- 2022-03-18 14:25:18下载
- 积分:1
-
应用BP神经网络算法辨识模型参数
应用BP算法实现模型辨识。
程序中给定输入,和实际输出,辨识模型可跟随真实输出值。绘制误差图,模型输出与真实值的对比图。
- 2022-03-06 16:17:51下载
- 积分:1
-
雅可比迭代解线性方程组 这个也是计算方法中另一种 求解线性方程组的计算程序...
雅可比迭代解线性方程组 这个也是计算方法中另一种 求解线性方程组的计算程序-Jacobi iterative solution of linear equations This is a separate calculation method for solving linear equations of computational procedures
- 2022-03-22 12:52:53下载
- 积分:1
-
RSA秘钥生成工具
开源的RSA秘钥生成工具,研究RSA加密很有用。该工具可让您轻松处理与加密,解密和消息的验证。
你不再需要做复杂代码编写,只须提供processorID或Mac地址即可
- 2023-03-29 06:00:04下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
关于图的数据结构操作
用C++写的关于图的操作!
- 2023-06-18 06:40:03下载
- 积分:1
-
验证码识别程序源码
图像识别练习(字符验证码、车牌号、身份证号)
- 2022-06-29 10:21:27下载
- 积分:1
-
N-QUEENS / N-REINAS
NREINAS版本1.9;
- 2022-02-25 06:31:24下载
- 积分:1