-
关于河内塔的一个算术分辨率。采用Visaul C++编译
河内塔的数学解析。用VisualC++编写
- 2022-05-26 09:11:12下载
- 积分:1
-
基于SVD的人脸识别,可以直接计算出识别正确率
基于SVD的人脸识别,可以直接计算出识别正确率-SVD-based face recognition, and can directly calculate the correct rate of recognition
- 2022-04-25 07:11:14下载
- 积分:1
-
清华大学2002年出版的《科学与工程数值计算算法Java》配套源码,包括复数计算、矩阵运算、插值计算、线性非线性方程组求解、数值积分、数值拟和与逼近等算法和类,...
清华大学2002年出版的《科学与工程数值计算算法Java》配套源码,包括复数计算、矩阵运算、插值计算、线性非线性方程组求解、数值积分、数值拟和与逼近等算法和类,对于科学和工程数值计算很有参考价值!-Qinghua University, in 2002 published "Science and engineering numerical algorithm Java" complementary source, includes the plural, matrix computation, interpolation, linear solve nonlinear equations, numerical integration, and the proposed numerical approximation algorithms and other categories, science and engineering numerical computation of great reference value!
- 2023-03-06 23:55:04下载
- 积分:1
-
读地震 SEG-Y 数据与 Fortran 2003
这个程序读取Fortran 90的地震SEGY数据从C修改,请参阅网址在SEGY数据格式文件包括在内。与Fortran的03的新功能,阅读与“流”的数据被使用。检查的号码的数字(整数或实数)的一个自定义功能用于实现的输出格式的自动化然而,一个SEG-Y数据的字节大小必须指定,在你运行该程序之前。
- 2022-02-14 05:59:20下载
- 积分:1
-
基于Givens transformation的QR分解。其使用需要调用Givens transformation程序。...
基于Givens transformation的QR分解。其使用需要调用Givens transformation程序。-Givens transformation based on the QR decomposition. Their use need to call Givens transformation process.
- 2022-12-18 18:05:03下载
- 积分:1
-
人工智能15数码问题
对人工智能中8数码问题的扩展,使用C#语言实现了15数码问题,使用的算法是人工智能领域中经典的A*算法解决了人工智能中常见的十五数码问题。
- 2023-08-08 20:10:03下载
- 积分:1
-
在c语言环境下实现快速傅立叶变换的功能,c实现fft变换
在c语言环境下实现快速傅立叶变换的功能,c实现fft变换-In c language environment to achieve the function of fast Fourier transform, c realize fft transform
- 2022-03-06 22:12:13下载
- 积分:1
-
动态规划的投资问题,c++方法,可参考,试过能用
动态规划的投资问题,c++方法,可参考,试过能用-Dynamic programming of investment issues, c++ Way of reference, never use
- 2023-05-15 13:35:02下载
- 积分:1
-
隐马尔可夫模型,C语言编写,重要的是里面附带有隐马尔可夫模型原理介绍的ppt,可以对应学习...
隐马尔可夫模型,C语言编写,重要的是里面附带有隐马尔可夫模型原理介绍的ppt,可以对应学习-HMM, C language, it is important that they are incidental tenets of Hidden Markov Models introduced ppt, can learn from counterparts
- 2022-02-14 17:02:31下载
- 积分: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