-
一个黄金分割法求最优区间
一个黄金分割法求最优区间-golden section method
- 2022-01-25 17:48:45下载
- 积分:1
-
c语言程序
c语言程序,无论初学还是一些深入程序,都可以在这里找到,希望可以帮到你,有点语言问题,不大会写,请原谅,
- 2022-05-18 09:31:19下载
- 积分:1
-
MFC下实现MD5加密
MFC下实现加密算法MD5,可以对字符串跟文件进行加密.值得一看
Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
rights reserved.
License to copy and use this software is granted provided that it
is identified as the "RSA Data Security, Inc. MD5 Message-Digest
Algorithm" in all material mentioning or referencing this software
or this function.
License is also granted to make and use derivative works provided
that such works are identified as "derived from the RSA Data
Security, Inc. MD5 Message-Digest Algorithm" in all material
mentioning or referencing the derived work.
RSA Data Security, Inc. makes no representations concerning either
the merchantability of this software or the suitability of this
software for any particular purpose. It is provided "as is"
without express or implied warranty of any kind.
These notices must be retained in any copies of any
- 2022-03-04 02:53:21下载
- 积分:1
-
电子地图
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
对电子地图信息的读取,查询等操作
- 2023-05-22 06:20:03下载
- 积分:1
-
PID 算法实现
PID 算法C语言实现 内有仿真文件.很容易看得明白
- 2022-08-09 15:11:57下载
- 积分:1
-
演示cvhmm
面对 演示;识别方法
- 2022-03-22 22:12:43下载
- 积分:1
-
遗传算法优化神经网络
采用遗传算法优化神经网络案例,是比较基础的一套代码,适合新手学习使用
- 2023-02-28 04:20:03下载
- 积分:1
-
这是一个用java高级编程语言编写的程序,能够实现用牛顿迭代法求解某个函数在某个指定区间内的根,方便易用。...
这是一个用java高级编程语言编写的程序,能够实现用牛顿迭代法求解某个函数在某个指定区间内的根,方便易用。-Java This is a high-level programming languages used in the preparation of procedures, be able to achieve with Newton iteration to solve a function in a specified range of root and user-friendly.
- 2022-02-24 10:25:07下载
- 积分:1
-
常用的直线拟合源程序,用于电、震法定解释方面
常用的直线拟合源程序,用于电、震法定解释方面-Commonly used linear fitting source for electricity, shock of statutory interpretation
- 2022-11-12 20:25:04下载
- 积分: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