-
插入排序算法
插入排序是一种简单的排序算法,生成最后的已排序的数组 (或列表) 的一个项目在一段时间。它是比更先进的算法,如快速排序、 堆排序或合并排序的大名单上的效率较低。插入排序循环,消耗一个 input 的元素每次重复,越来越多的已排序的输出列表。每次迭代,插入排序中移除一个元素从输入数据中,查找的位置,它是属于在已排序的列表,并将其插入那里。它将重复显示直到没有输入的元素。排序通常完成就地,通过迭代组成的数组,增长背后的排序的列表。在每个数组位置,它会检查那里的值反对 (这碰巧是在它旁边,在以前的数组位置检查) 的排序列表中的最大值。如果较大,它在地方离开元素并移到下一步。如果较小,它发现内已排序列表中的正确位置,转移到一个空间,让所有较大的值,并插入那正确的位置。
- 2022-01-24 15:43:02下载
- 积分:1
-
利用相关法计算物体的移动
利用相关法计算物体的移动-correlation method of mobile objects
- 2022-08-13 17:37:32下载
- 积分:1
-
在MATLAB环境中实现最小二乘法和有理分式插值法的程序
在MATLAB环境中实现最小二乘法和有理分式插值法的程序-lspoly and DOS method
- 2022-06-01 07:49:17下载
- 积分:1
-
keil数码管逐个亮
在keil编程软件上实现对数码管的检测,P1口接数码管,500ms的间隔时间逐个点亮。
- 2023-09-04 00:15:03下载
- 积分:1
-
HMM源码 java版,可以直接放到weka里用
HMM源码 java版,可以直接放到weka里用,他是一个HMM算法的代码包,当需要在weka里使用该算法是,就可以通过配置
将其添加到weka里使用
- 2022-08-18 17:53:53下载
- 积分:1
-
键盘事件触发检测
当单击鼠标左键时或者按下键盘一个按键,程序会检测到,并在窗口显示相关信息,适用于初学VC6.0winapp开发者参考。
- 2022-08-24 20:27:01下载
- 积分:1
-
汇编数摸静态转换
汇编数摸静态转换-Compilation of a few touch static conversion
- 2022-09-07 02:25:03下载
- 积分:1
-
Procedure: All the main element Gauss elimination process: gaussq (aa, bb, xx, n...
程序:全主元Gauss消去法
过程:gaussq(aa,bb,xx,n,sgn)
作用:aa为系数矩阵,bb为右端向量,xx为解向量,n为方程阶数,sgn为标识符,1表示计算正常进行,0表示计算失败
方程形式为:aa(n,n)*x(n)=bb(n)-Procedure: All the main element Gauss elimination process: gaussq (aa, bb, xx, n, sgn) Role: aa for the coefficient matrix, bb for the right-hand side vector, xx for the solution vector, n the order of the equation, sgn as identifiers, 1 indicates the calculation as normal, 0 indicates failure of the calculation equation of the form: aa (n, n)* x (n) = bb (n)
- 2023-02-27 01:55:03下载
- 积分:1
-
The first two for the artificial intelligence program, prepared with the C++, re...
前两个为人工智能程序,用C++编写,分别是动物判别程序及实现异或算法的bp程序。BLUETOOTH和F2M_BLUETOOTH是单片机和蓝牙模块通信的程序。“数字示波器”为利用单片机开发的一个简单数字示波器程序。-The first two for the artificial intelligence program, prepared with the C++, respectively, determine the procedures and implementation of animal XOR algorithm bp procedures BLUETOOTH.C and F2M_BLUETOOTH.C microcontroller and Bluetooth module is a communication process digital oscilloscope. C for the use of MCU development of a simple digital oscilloscope program.
- 2022-07-27 16:52:17下载
- 积分:1
-
使用递归实现的快速排序法
使用递归实现的快速排序法-Quick sort using recursive
- 2022-08-04 11:35:02下载
- 积分:1