-
Algorithm Design Manual 欢迎你下载ginger547的算法系列资料
Algorithm Design Manual 欢迎你下载ginger547的算法系列资料-Algorithm Design Manual ginger547 welcome you to download the information algorithm Series
- 2023-01-31 12:00:03下载
- 积分:1
-
ARREGLOS EN FORTRAN
Algoritmos en Fortran 标准的身材段实习发展 manejar arreglos 标准的身材 completo 独奏干草 que compilar y ejecutar
- 2022-02-03 02:35:48下载
- 积分:1
-
割线算法
* To find a solution to the equation f(x) = 0* given initial approximations p0 and p1:** INPUT: initial approximation p0, p1; tolerance TOL;* maximum number of iterations N0.** OUTPUT: approximate solution p or* a message that the algorithm fails.*
- 2022-01-25 15:06:45下载
- 积分:1
-
K-means算法的实现
c++ 语言实现算法,用的时候把数据集里面的数据放到C盘下,直接运行就行,数据集提供了两种,方便计算
- 2022-08-15 07:31:27下载
- 积分:1
-
最小二乘法求平面
最小二乘法求平面VC小程序,在vc6.0环境下编译的一个简单的最小二乘平面拟合程序,压缩包中是一个完整的工程.
- 2022-06-27 05:56:22下载
- 积分:1
-
asdasasadddddddddddddddddddddddddddddddd
萨斯达斯
- 2022-02-01 13:08:23下载
- 积分:1
-
目标分配问题
目标分配问题 应用遗传算法进行优化 使其对遗传算法的功能有一个较为全新的认识 适合初学者进行学习。
- 2023-08-02 20:15:03下载
- 积分:1
-
基于FSK调制解调的C++源程序
基于FSK调制解调的C++源程序,可以用,欢迎下载,调制解调器网络编程,对用的它的人会看看的!!!!网上大部分是MATLAB的,这个是C++的,很不错啊!!!!
- 2022-12-08 20:40:03下载
- 积分: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语言求解四阶龙格库塔法的算法源代码,例子:某一地区的病菌传染,三种人员的人数的状态方程,即可能受传染的人数x1,已被传染的病的人数x2,及已治愈的人数x3,并...
c语言求解四阶龙格库塔法的算法源代码,例子:某一地区的病菌传染,三种人员的人数的状态方程,即可能受传染的人数x1,已被传染的病的人数x2,及已治愈的人数x3,并假设他们是因接触而传染。-c language for solving fourth-order Runge-Kutta method algorithm source code, example: a certain area of the bacteria infection, the number three state equation, which may be the number of infected x1, has been the number of disease-borne x2, and the number of people have been successfully cured x3, and assuming they are due to exposure and infection.
- 2022-02-26 07:56:30下载
- 积分:1