-
是CA算法的test程序,用于描述微观枝晶长大的代码!
是CA算法的test程序,用于描述微观枝晶长大的代码!-CA algorithm is the test procedure, used to describe the micro-dendrites grew up in the code!
- 2022-08-25 16:22:03下载
- 积分:1
-
小波
基于C语言的小波处理,包含有滤波、复原、融合等C语言源代码。-Wavelet-based C language processing, includes filtering, recovery, integration, such as C language source code.
- 2022-08-02 13:28:24下载
- 积分:1
-
jsr 184 仿真库
资源描述jsr 184 opengl 3d 实现。基于软件实现。无需硬件支持。已经优化了。
- 2022-05-18 12:25:58下载
- 积分:1
-
前推流算法
push–relabel 算法是一个最有效的算法来计算最大流.
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-07-05 07:51:03下载
- 积分:1
-
五角冰铺留言版V1.0
资源描述简介:
完整的管理模式 分页功能 搜寻功能 ,可以整合到自己的程序中,效果杠杠的。
- 2023-02-13 00:50: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
-
这是我学习数字信号处理时编写的程序!功能就是显示一些常用的函数的图形!并可以做FFT计算!...
这是我学习数字信号处理时编写的程序!功能就是显示一些常用的函数的图形!并可以做FFT计算!-This is what I have learned from digital signal processing to prepare the procedures! Function is to show that some of the functions commonly used graphics! And FFT calculation can be done!
- 2022-08-26 07:30:20下载
- 积分:1
-
摄像机标定工具箱Matlab代码
Matlab code of toolbox of camera calibration -Matlab code of toolbox of camera calibration
- 2023-04-22 19:10:02下载
- 积分:1
-
通用GPU计算已经成为越来越受欢迎,因为GPU的多…
通用GPU计算越来越受欢迎了,原因在于GPU具有多个并行计算单元,这是在GPU上进行通用计算的CPP代码-General GPU computing has become increasingly popular because GPU with multiple parallel computing units, which are common in GPU computing on the CPP code
- 2023-03-15 04:30:04下载
- 积分:1
-
求解Fibonacc数列中大于t的最小的一个数,结果由函数返回
求解Fibonacc数列中大于t的最小的一个数,结果由函数返回-Solving Fibonacc series in t is greater than the smallest number of results by the function returns
- 2022-07-02 12:51:24下载
- 积分:1