搜索资源列表
bf-C++source-2003.8-3
- Bayes滤波器算法,c++语言实现,Visual Studio.net下实现,2003年8月修正版本,用于数据融合算法-Bayesian filter algorithm, c language, was officially realizing, in August 2003 amended version, algorithm for data integration
数据结构中所用的8种排序方法
- 本程序集合了数据结构8种主要的排序方法:插入排序、冒泡排序、选择排序、快速排序、希尔排序、堆排序、归并排序、基数排序。-the procedures set of data structure of the eight major sequencing method : Insert ranking Bubble Sort, select, in order of Quick Sort, Hill sequencing, heap sort, merge, in order of ranking
平衡二叉树c++
- 平衡二叉树生成 输入任意个节点 如 2 6 8 0为显示 可自动生成平衡二叉树 bf为平衡因子 h给深度 可插入删除 计算转动次数(wangliwei007也是我,质料没添全就换这个好号,请斑竹给我发个号好吗?我也想下载东西,急)-balanced binary tree generating arbitrary input nodes as 2 6 8 0 to demonstrate that automatically generates balanced binary tree bf f
libsvm-2.8
- libsvm升级到2.8版本,针对新的代码稍做修改,重新排版,修正了原版中部分错误 -libsvm upgrading to 2.8 edition,do little chinging on new edition,set up new type,and changing some mistake of original edition.
8数码hot
- 8数码问题,我本科毕业设计,vc6.0制作,可动态演示!-eight digital, I graduated design, vc6.0 production, dynamic demo!
Eidffakght
- 利用BFS算法解八数码问题 在3*3的方格上放着1-8数码,有一空格为0变化规则为空格可以和上,下,右,左四个相邻的数字互换, 至到和目标状态相等, 每一种状态用一个结点表示 而每个结点每次变化最多有四种结点,将这些结点依次入队列中, 例如初始结点S0,入队列后出队,将S0变化最多产生的四种结点S01,S02,S03,S04依次入队列中, 当S01出队后,产生的四种结点S11,S12,S13,S14(实际上不会有四种结点)依次入队, 每次出队时与结束结点相比较,如果
程序内存驻留程序(TSR)8
- 在C语言中,可以用keep ( )函数将程序驻留内存。这个函数有两个参数:status和size。size为驻留内存长度,可以用size=_SS+_SP/16-_psp得到,当然这也是一种估算的方法,并不是精确值。函数执行完以后,出口状态信息保存在status中。比如,对于上面的例子,将“geninterrupt (0x60) ”改写成“keep(0,_SS+_SP/16-_psp) ”后再执行程序,这一段程序就被驻留,此后在其它的任何软件或程序设计中,只要用到了60H号中断,就会在屏幕上显示“
ChilkatVC8
- Chilkat Class Libraries for Visual C++ 8.0
gsl-1.8
- gsl1.8数学库,可以用来进行数值计算等。-gsl1.8 Math Library, can be used for numerical calculation.
cmake-2.8.0
- cmake-2.8.0很好的,大家也可以去官网下,不过很慢,我就代为下了.-cmake-2.8.0 very good, it can be Quguan under the net, but very slow, I took the down the.
Weka3.5.8
- weka3.5.8版本,包括3.5.8版本的安装程序和源码,两个3.5.5的英文版入门教程和一个中文入门教程-weka3.5.8 version, including the 3.5.8 version of the installer and source, the two English-language version 3.5.5 and a Chinese Tutorial Tutorial
8-puzzle-genetic
- It s simple implementation of Genetic Algorithm on 8-puzzle and as result it can say either there is or not a set of movement to go from initial state to a given final state.-It s simple implementation of Genetic Algorithm on 8-puzzle and as re
MATLAB7.8
- MATLAB7.8鲁棒控制入门指南,这是一本基于MATLAB的鲁棒控制方面的入门书籍,希望对网友们有用-MATLAB7.8 Robust Control Getting Started Guide, which is a MATLAB-based robust control of entry books, useful for users who want to
8
- 8. 单径瑞利信道中的四发四收V-BLAST: (1) 请设计一种具体的导引辅助的信道估计方法,用Simulink进行仿真,测量16QAM调制时的误码率性能。画出比特信噪比与信道估计均方误差的关系曲线,画出比特信噪比与误码率的关系曲线。 -4 Explain the working principle of convolutional encoding and decoding. Please use the Simulink simulation convolutional codin
IEEE-8-16
- [2010.8.10]【IEEE标准电脑鼠走迷宫仿真】[8×8.16×16] 可走8*8 也可以走16*16 具体操作步骤有文档解释-[2010.8.10] [IEEE standard computer mouse maze simulation 8 × 8.16 × 16 Go 8* 8 can go 16* 16 The specific steps the document explains
Ziena-Optimization-KNITRO-8.0
- Ziena Optimization KNITRO 8 MATLAB C++ java
apache-tomcat-8.0.23-windows-x64
- tomcat最新版的安装包,直接解压可用-apache-tomcat-8 for 64 bit
8数码
- 需要说明的是:本文示例图中的目标状态在计算上是最快捷的,首先取数很方便,一般地查看目标在第i个位置上的值,则需要访问数组goal[i],而这里goal[i]==i,故而无需访问数组;第二,要想知道数码n的目标位置,则需要找到goal[i]==n,然后row=i/3,col=i%3. 但是这里的话,row=n/3,col=n%3. 当我们用8位无符号整型来表示各个数码值(0~8)时,n/3和n%3操作是非常快的,比访问数组还快。 程序还提供一种玩游戏模式,即用户自己通过W,S,A,D四个键分
回溯算法解决8皇后问题
- 利用回溯算法计算8皇后问题,计算出最终方案(A backtracking algorithm is used to calculate the 8 Queens, and the final scheme is calculated.)
weka-3-8-1
- weka3-8-1最新包,可直接放到eclipse 或者打开可视化做数据挖掘(The latest package of weka3-8-1 can be directly put into eclipse or open to do data mining.)