-
多个常用的特殊函数的例子
多个常用的特殊函数的例子-One of the more common examples of the special function
- 2023-06-20 16:20:03下载
- 积分:1
-
A program to demonstrate the optimization process of ant colony optimization for...
A program to demonstrate the optimization process of ant colony optimization for the traveling saleman problem (TSP). The cities are shown as red circles, the pheromone on the connections between them (fully connected graph) by gray lines. The darker the grey, the more pheromone is currently on the edge. During the optimization, the currently best found tour is drawn in red. To run the optimization, first create a random TSP, then create an ant colony, and finally run the optimization.
- 2022-02-19 22:51:42下载
- 积分:1
-
使用索引实现快速查找
使用索引实现快速查找-Quick search by using index
- 2022-08-13 10:19:10下载
- 积分: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
-
solving high
求解高 阶 线性方程组-solving high-order linear equations
- 2022-10-22 23:45:03下载
- 积分:1
-
BMP的C++生成代码
使用C++编程语言实现BMP的文件生成,BMP是一种常见的图像格式。BMP 文件由文件头、位图信息头、颜色信息和图形数据四部分组成,生成较为复杂。附件提供了完成的BMP文件生成的代码及其具体的讲解。
- 2022-03-23 05:15:52下载
- 积分:1
-
k均值聚类分析,比较简单,只适合学习使用个,不适合数据处理。...
k均值聚类分析,比较简单,只适合学习使用个,不适合数据处理。-k-means clustering analysis, relatively simple, only suitable for learning to use one, not suitable for data processing.
- 2022-02-06 15:39:22下载
- 积分:1
-
遗传算法求最大值(任意多元高阶次寻优),在vc++平台下开发...
遗传算法求最大值(任意多元高阶次寻优),在vc++平台下开发
- 2022-03-29 11:12:52下载
- 积分:1
-
概率算法! 圆排列的随机化算法,超快的!
概率算法! 圆排列的随机化算法,超快的!-probability algorithm! Yuan with a randomized algorithm, ultra-fast!
- 2022-02-18 17:21:06下载
- 积分:1
-
拉格朗日函数的源程序代码,可实现多个数的插值运算,最多可达二十个之多...
拉格朗日函数的源程序代码,可实现多个数的插值运算,最多可达二十个之多-Lagrange function of source code, can realize more than a few of the interpolation operator, up to as many as 20
- 2022-03-04 17:07:36下载
- 积分:1