-
鼹鼠闯迷宫
资源描述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
-
Sopascommunication
这是一个关于LMS100型号的激光雷达扫描数据示例程序,程序中有很多关于参数的设置,基于.net,利用socket实现通信。因为网上关于激光雷达可借鉴的程序很少,所以贴出来供学习激光雷达的人学习!
- 2022-01-26 05:38:27下载
- 积分:1
-
3D人体数据关节点、中心线、末端点的计算
编程环境是VC++2010、OpenGL。通过三维扫描得到3D人体数据。从点云数据里任意找一个点,然后类于拓扑排序计算出人体末端点;用算法把人体分为四肢和躯干,然后分别分层对四肢和躯干求中心点;用似圆算法对四肢进行操作得到关节点。
- 2022-07-23 01:10:27下载
- 积分:1
-
压缩感知SL0算法
SLl0算法是一种压缩感知稀疏重构的新算法,通过利用高斯函数等光滑函数来逼近压缩感知中的0范数优化问题,将NP问题转化为光滑凸优化问题。根据本人测试,SL0算法计算效率显著高于传统的OMP、BP等算法,同时具有较好的计算精度,不过对噪声的容忍度略差。
- 2022-02-02 17:50:44下载
- 积分:1
-
Gabor_code
资源描述通过gabor进行特征提取,对鞋印的纹理进行提取,并且进行高斯滤波,提取的内容比较丰富,损失的信息比较少。并且gabor的各种属性也能使读者清楚地理解。
- 2022-07-07 11:41:03下载
- 积分:1
-
这是一段关于四种排序方法的完全源代码及其相互之间的比较,包括:Heap sort,Merge sort,Quick sort,Radix sort...
这是一段关于四种排序方法的完全源代码及其相互之间的比较,包括:Heap sort,Merge sort,Quick sort,Radix sort-This is a period of about four kinds of methods to sort the complete source code and the comparison between, including: Heap sort, Merge sort, Quick sort, Radix sort
- 2022-05-07 06:26:05下载
- 积分:1
-
本文件包包括复数的常用运算
本文件包包括复数的常用运算- This document pocket includes the plural number commonly used
to operate
- 2023-04-15 14:55:04下载
- 积分:1
-
与上一个程序的不同之处在于,此程序计算的是强制对流的问题,上一个为自然对流...
与上一个程序的不同之处在于,此程序计算的是强制对流的问题,上一个为自然对流-With a different procedure is that this procedure is the calculation of the problem of forced convection, natural convection on a
- 2022-08-10 00:04:06下载
- 积分:1
-
With the human genome project implementation, through genome sequencing, protein...
随着人类基因组计划的实施,通过基因组测序,蛋白质序列测定结构解析等实验,分子生物学家提供了大量的有关生物分子的原始数据,需要利用现代计算技术对这些原始数据进行收集、整理、管理以便于检索使用。而为了解释和理解这些数据,还需要对数据进行比对、分析,建立计算模型,进行仿真、预测与验证,因而出现生物信息学,它的出现,极大的促进了分子生物学的发展。-With the human genome project implementation, through genome sequencing, protein sequencing experiments such as structural analysis, molecular biologists to provide a large amount of biological molecules of the original data, the need to use modern technology to these raw data collection, collation and management in order to facilitate retrieval use. To explain and understand these data, and data need to be compared to analysis, model, simulation, prediction and validation, therefore, bioinformatics, and its emergence has greatly promoted the development of molecular biology.
- 2022-09-17 05:10:03下载
- 积分:1
-
Used to solve nonlinear systems in the bifurcation, chaos, periodic, quasi
用来求解非线性系统中分岔,混沌,周期,准周期等动力学,可以求数值解,也可画图,只要知道系统模型,可以根据需要自由修改参数,软件带有使用说明,简单易懂-Used to solve nonlinear systems in the bifurcation, chaos, periodic, quasi-periodic dynamics, etc., you can seek numerical solutions, but also drawing, as long as know the system model, you can freely modify the parameters as needed, the software with instructions for use, simple and easy to understand
- 2022-03-19 08:32:01下载
- 积分:1