-
MD5源代码
MD5 哈希算法实现,充分测试验证
API定义如下:
void MD5Init PROTO_LIST ((MD5_CTX *));
void MD5Update PROTO_LIST
((MD5_CTX *, unsigned char *, unsigned int));
void MD5Final PROTO_LIST ((unsigned char [16], MD5_CTX *));
void md5(char*,char*,int len);
- 2022-03-26 06:41:24下载
- 积分:1
-
线形方程组类:包括各种线性方程组的各种求解方法,非常方便调用
线形方程组类:包括各种线性方程组的各种求解方法,非常方便调用-Linear equations categories: including a variety of linear equations to solve a variety of methods, very convenient to call
- 2023-03-26 16:40:03下载
- 积分:1
-
数学算法原书光盘
数学算法原书光盘-mathematical algorithms original CD
- 2022-01-26 03:22:05下载
- 积分:1
-
PASCAL编译器
项目描述:该项目源代码用C++语言描述,针对扩充的PASCAL文法,实现了对扩充PL0源程序进行词法分析、语法分析、语义分析、代码生成以及最终解释执行的编译器的编写。并完成了错误处理和符号表管理等程序。该工程可以将符合文法的正确程序进行编译得到结果,也可以对错误的程序进行精确报错。
- 2023-03-01 18:25:04下载
- 积分:1
-
电话仿真系统 主要用在计算机仿真课上 可能有错误!
电话仿真系统 主要用在计算机仿真课上 可能有错误!-telephone simulation system used mainly in computer simulation class may be wrong!
- 2022-01-26 07:36:07下载
- 积分:1
-
Aquila是一个MATLAB工具箱
AQUILA is a MATLAB toolbox for the one- or twodimensional simulation of
%the electronic properties of GaAs/AlGaAs semiconductor
%nanostructures. -AQUILA is a MATLAB toolbox for the one- or tw odimensional simulation of the electronic pr% operties of GaAs/AlGaAs semiconductor% nanos tructures.
- 2022-02-05 09:36:04下载
- 积分:1
-
这是AES算法在网络安全中的源代码。
This the source code of AES algorithm which is used in network security.-This is the source code of AES algorithm which is used in network security.
- 2022-04-15 09:03:42下载
- 积分:1
-
Bitsring with Java programming
这段代码描述了遗传算法的一部分过程,可能有用
- 2022-04-17 12:34:35下载
- 积分:1
-
basic length converter
这是一个简单的c#编码,用于转换以下长度:
- 2022-02-07 15:35:47下载
- 积分:1
-
鼹鼠闯迷宫
资源描述void creatWay(int (*mg)[N],int x, int y)//在迷宫中产生一条路,使用图的深度遍历思想来实现,
{
static int dir[4][2] = {0, 1, 1, 0, 0, -1, -1, 0};////将要走的4个方向保存在二维数组中
int zx = x*2;
int zy = y*2;
int next, turn, i;
mg[zx][zy] = 0;
if(rand()%2)
turn = 1;
else
turn = 3;
for(i=0,next=rand()%4;i
- 2022-01-26 05:46:58下载
- 积分:1