-
C语言对文件哈夫曼编码压缩,而不是通过范畴…
用C语言实现哈夫曼编码对文件进行压缩,并没有通过类来实现,只是用标准的C语言中结构实现的,代码内部说明比较详细,具体可以看代码,包括对文件的编码也解码.-C language of the document Huffman coding compression, and not through the categories to fruition, but the standard C language structure to achieve, and the internal code note in greater detail, the specific code can be seen, including the encoding of the document also decoder.
- 2022-05-19 13:57:26下载
- 积分:1
-
liang barsky line clipping algo
liang barsky line clipping algo
- 2022-03-20 17:54:38下载
- 积分:1
-
最优化课程中要用到的所有最优化算法,全都经过验证
最优化课程中要用到的所有最优化算法,全都经过验证-Optimization of the curriculum used in all optimization algorithms, all verified
- 2022-01-31 22:58:06下载
- 积分:1
-
MD5VBMD5码生成的程序
vb编写关于MD5码生成的程序,主要用于MD5码的生成。经测试没有什么错误,可以正常使用。可以生成短MD5和长MD5两种码。
- 2023-02-27 10:45:02下载
- 积分:1
-
相场模拟
相场模拟薄膜异质外延,外延薄膜的失稳包括弹性能和表面能的竞争,然后,薄膜表面在微小扰动的情况之下,由于薄膜释放与衬底失配导致的应力,而失稳。我们通过相场模拟出了这个变化。程序包括,非均匀弹性场的计算和半隐谱的差分方法
- 2023-01-03 08:40:14下载
- 积分:1
-
约瑟夫问题的求解方案,经典
约瑟夫问题的求解方案,经典-Joseph solving the problem, classic
- 2023-03-15 03:10:03下载
- 积分:1
-
短小精悍的C语言标准函数库。提供450个以上的可移植的算法和工具代码。...
短小精悍的C语言标准函数库。提供450个以上的可移植的算法和工具代码。-terse and forceful language standard C libraries. For more than 450 portable code algorithms and tools.
- 2022-11-16 18:35:03下载
- 积分:1
-
encryption decryption
它是一种信息加密技术,它为我们的信息提供了安全性,它将纯文本转换成密文,并在此基础上以5*5的块排列
- 2023-05-16 10:45:02下载
- 积分:1
-
OFDM/OQAM 的 paper(OFDM/OQAM论文)
这一部分是关于OFDM/OQAM的论文的一个合集,其中以classic OFDM Systems and Pulse Shaping OFDM/OQAM Systems为中心,将其中论文涉及的参考文献都几乎都下载了下来,而且对应的引用的编号和标题有对应,可以很好的查看论文。这些论文从基础一直讲到了以后的发展趋势,是不可多得的好论文集,在收集时花了不少心思。
- 2023-08-27 05:40:06下载
- 积分:1
-
文件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