-
文件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
-
将正整数分解为素数之积
将正整数分解为素数之积- Decomposes the positive integer product of into the prime
number
- 2022-03-23 08:39:30下载
- 积分:1
-
TI DSP 642 上面运行的图像处理程序, 用来做sobel边缘提取
TI DSP 642 上面运行的图像处理程序, 用来做sobel边缘提取-TI DSP 642 above the operation of image processing procedures used to make sobel edge detection
- 2022-02-03 21:48:46下载
- 积分:1
-
使用 c + + 静态霍夫曼 (包括说明进行操作)
-第一,该程序将扫描压缩的文件并将输入的字符保存在文件中,(nhapDuLieu 函数),然后按常规字符出现的顺序进行排序。-接下来,用来加密数据,以创建哈夫曼树由 taoCayHuffman 方法 ()。数据将存储在输出文件中。后来当解码使用所存储的数据来生成用于减压的哈夫曼树。-使用 ListNode 是双重链接列表 HuffmanNode 存储。每个 HuffmanNode 7 组件,包括光标,左、 右。 + 符号是字符。 + 频率是相匹配的字符个数。 + 码字是对应的二进制数字的十进制表示形式。例如码字的 A 为 3,它对应于二进制代码 011。 + CodewordLen 存储位码字数量,以避免与 0011 混淆或 11 011 或 00011......+ RunLen 长度的字符的编码 () 操作相同原则: 例如,在原始输入文件中包含的字符串 AAAB,AAA 和码字存储在 110," 包 " 将节省码字它作为 4 个字节 (32 位),万人......为 000110 (32 位)。然后 B 是在存储和处理,B 的码字是 01-> 保存到 " 包 " 通过添加左侧 " 包 " 以前-> 000 个。000 110 01 (也就是 32 位) — — 的运作原则解码 (): 解码 () 操作简单编码 ()。首次创建数组数据 [] 用方法 nhapDoThuongXuyen (),然后由 taoCayHuffman () 构造的哈夫曼树最后在函数中解码的树和原始字符串 () 扫描
- 2022-10-30 11:20:02下载
- 积分:1
-
KNN (K 最近的分类)
k-近邻算法 (k-NN) 是一个非 参数化方法分类和回归
- 2022-08-25 23:28:30下载
- 积分:1
-
development of the zinc flow calculation procedures, the least
开发的锌流量计算程序,用到了最小二乘法,具体参数的设定需要根据具体的容器来定-development of the zinc flow calculation procedures, the least-squares method used, the specific set of parameters according to the concrete containers to determine
- 2022-09-12 07:35:03下载
- 积分:1
-
in Turbo C development environment and achieve symmetric matrix input, and to de...
在Turbo C环境下开发,实现对称矩阵的输入,并判定是否为正定。可以修改输入模块实现对任意非奇异矩阵求逆。求逆算法采用伴随矩阵法,求解行列式采用化上三角矩阵法。该算法系本人根据《线性代数》描述编写,矩阵的最大阶数可任意修改,更具有通用性。-in Turbo C development environment and achieve symmetric matrix input, and to determine whether the positive. Can modify the input module of arbitrary non-singular matrix inversion. Inverse algorithm adjoint matrix method, used to solve determinant of the upper triangular matrix. The algorithm is based on my "Linear Algebra" to describe the preparation, the biggest band Matrix will be able to arbitrarily amend, more versatile.
- 2023-01-02 15:05:03下载
- 积分:1
-
部分PKU上的源码,希望对大家有所帮助。其中包括所有提交代码,里面均有提示...
部分PKU上的源码,希望对大家有所帮助。其中包括所有提交代码,里面均有提示-PKU part on the source, and they hope to help everyone. Including all submitted code, which has prompted
- 2022-03-24 17:42:37下载
- 积分:1
-
B样条绘制,计算控制点然后绘制样条
B样条绘制,根据鼠标点击确定形值点,计算控制点然后绘制样条
- 2022-06-21 16:50:45下载
- 积分:1
-
关于小波理论的课件,介绍傅立叶变换的内容
关于小波理论的课件,介绍傅立叶变换的内容
- 2023-03-16 23:40:03下载
- 积分:1