-
文件MD5 生产算法
char *MD5_file (char *path, int md5_len)
{
FILE *fp = fopen (path, "rb");
MD5_CTX mdContext;
int bytes;
unsigned char data[1024];
char *file_md5;
int i;
if (fp == NULL) {
fprintf (stderr, "fopen %s failed
", path);
return NULL;
}
MD5Init (&mdContext);
while ((bytes = fread (data, 1, 1024, fp)) != 0)
{
MD5Update (&mdContext, data, bytes);
}
MD5Final (&mdContext);
file_md5 = (char
- 2022-07-11 22:12:17下载
- 积分:1
-
计算mie散射过程中的散射幅度函数,对研究粒子散射问题有较大帮助...
计算mie散射过程中的散射幅度函数,对研究粒子散射问题有较大帮助-Mie scattering process of calculating the scattering amplitude function, the study of particle scattering problems have more to help
- 2023-03-17 08:55:03下载
- 积分:1
-
有届面的BP算法软件.操作简单,画面华丽,适用于本科生毕业用...
有届面的BP算法软件.操作简单,画面华丽,适用于本科生毕业用-Session has the software side of BP algorithm. Simple, gorgeous screen, applies to undergraduate students graduate with
- 2022-01-26 05:31:43下载
- 积分:1
-
列主元的高斯算法
列主元的高斯算法-out of the PCA algorithm Gaussian
- 2022-03-17 20:15:36下载
- 积分:1
-
迭代法
迭代法――数值分析,程序代码,参考数值分析课本,很简单的程序,大家一定看得懂-iterative method-- numerical analysis code, the numerical analysis of reference books, a very simple procedure, we must understand the
- 2022-01-25 22:33:54下载
- 积分:1
-
用fdtd计算电磁场的程序,可模拟电磁场在介质中的传播!
用fdtd计算电磁场的程序,可模拟电磁场在介质中的传播!-fdtd calculated using electromagnetic procedures, can simulate the electromagnetic field of transmission medium!
- 2023-01-19 20:55:03下载
- 积分:1
-
工资管理系统
资源描述工资管理系统,C语言作业,简单,易用
- 2022-11-08 22:05:03下载
- 积分:1
-
计算圆周率可一到小数点后任意位,速度还不错
计算圆周率可一到小数点后任意位,速度还不错-One can calculate pi to arbitrary places after the decimal point, speed is also good
- 2023-04-13 21:50:03下载
- 积分:1
-
图像拼接
图像拼接原代码,VC++,图像拼接在制作全景图的过程中具有重要作用。对多幅图像进行特定模式投影后, 用约束的相位相关度法求取水平垂直偏移量,然后寻找最佳缝合线,实现图像拼接, 最后采用多分辨率算法对全图进行拼接处理去除曝光差异和鬼影。 整个过程用VisualC++加以实现,实验结果验证了算法的有效性。
- 2022-03-31 06:56:53下载
- 积分:1
-
先序遍历的非递归算法
先序遍历的非递归算法-preorder non- recursive algorithm
- 2023-07-17 08:50:03下载
- 积分:1