-
应用maxplus ii 进行编写工作,主要是进行仿真,很有用
应用maxplus ii 进行编写工作,主要是进行仿真,很有用-maxplus ii application for the preparation work is primarily for simulation, useful
- 2022-09-08 05:45:02下载
- 积分:1
-
这三段C程序能够产生符合高斯、瑞利和泊松分布的随机数,并且包括关于它们的说明文档...
这三段C程序能够产生符合高斯、瑞利和泊松分布的随机数,并且包括关于它们的说明文档-These three paragraphs C program to generate consistent with Gaussian, Rayleigh and Poisson distribution of random numbers, and includes documentation about them
- 2022-01-31 02:36:39下载
- 积分:1
-
Pt100计算工具
Pt100传感器计算工具,输入温度值,如100℃,则能计算出相应的Pt100阻值。
- 2022-09-07 14:20:03下载
- 积分:1
-
看,是VB程序的数值类型,程序会让你输入一个n。
猜数字,是一个VB数值计算类程序,程序可以让你输入一个数字,猜错了可以继续猜-viewing, VB is a numerical type of proceedings, procedures can let you input a number of wrong guess can continue
- 2022-01-30 16:25:24下载
- 积分:1
-
c++A*寻路
这篇文章很适合A*算法的初学者,可惜网上没找到翻译版的。本着好东西不敢独享的想法,也为了锻炼一下英文,本人译了这篇文章。
由于本人英文水平非常有限,六级考了两次加一块不超过370分,因此本译文难免存在问题。不过也算是抛砖引玉,希望看到有更多的游戏开发方面的优秀译作出现,毕竟中文的优秀资料太少了,中国的游戏开发者的路不好走。
本人能力有限,译文中有小部分词句实在难以翻译,因此暂时保留英文原文放在译文中。对于不敢确定翻译是否准确的词句,本人用圆括号保留了英文原文,读者可以对照着加以理解。
A*算法本身是很简单的,因此原文中并没有过多地讨论A*算法本身,而是花了较大的篇幅讨论了用于保存OPEN和CLOSED集的数据结构,以及A*算法的变种和扩展。
编程实现A*是简单的,读者可以用STL对本文中的伪代码加以实现(本人已花一天时间实验过基本的A
- 2022-02-20 19:40:30下载
- 积分:1
-
水平集 cv 方法初步
这是代码执行在 matlab 中的,用于研究水平集的 cv algorithm.and 需要的迭代次数草签完毕
- 2023-08-04 15:55:04下载
- 积分:1
-
堆排序例子
堆排序例子-Example of heap sorting
- 2022-02-10 00:09:17下载
- 积分:1
-
for the filename specified by the file name to create a model mode FILE structur...
为filename 所指定的文件名按mode 模式创建一个FILE结构数据区,并将该数据区的首地址赋值给FILE类型的指针变量fp.-for the filename specified by the file name to create a model mode FILE structure data, the data will be the first to address assignment FILE pointer types of variables fp.
- 2022-08-23 19:57:32下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
8 Queen of an efficient recursive method
八皇后问题的一种高效递归解法-8 Queen of an efficient recursive method
- 2023-03-01 08:35:04下载
- 积分:1