-
单链表操作
资源描述#include
#define maxsize 100
using namespace std;
/*class base
{
int length;
};*/
class Seqlist //实现顺序表类
{
private:
int size; //当前元素个数
int length; //当前表的总长度
public:
int *elem; //动态存放数据
Seqlist(); //构造函数的声明
int listset(); //顺序表的创建
&nbs
- 2022-06-03 18:29:34下载
- 积分:1
-
sift拼接
资源描述利用rob-hess提供的一些基础函数,主要包括imgfeature,utils,kdtree,minpq,sift,xform系列函数,主程序利用ransac精度匹配,求得转换矩阵后,重叠区域采用加权平均融合的方法的到拼接效果图。函数的运行环境是vs2010+opencv2.4.9,已经较好的实现了两幅图像的水平拼接。
- 2022-12-12 08:25:04下载
- 积分:1
-
贪吃蛇算法题
应用背景某个公司的面试题,贪吃蛇,用动态规划求解最佳路径。蛇从屏幕左端走到右边,经过格子可以得分,求最大得分关键技术动态规划,DP。一列一列的递归,右边一列的值取决于左边一列的值,从左到右最后获得全局解。
- 2022-02-05 16:24:21下载
- 积分:1
-
很强的有限元分析软件ansys55的源码,用于计算规则长方体空腔的固有频率和模态...
很强的有限元分析软件ansys55的源码,用于计算规则长方体空腔的固有频率和模态-strong finite element analysis software ansys55 source code, rules for the calculation of the rectangular cavity natural frequencies and mode
- 2023-01-24 15:05:04下载
- 积分:1
-
pitch shifter
Simulink中的这个高度专业化的块将设置Simulink的配置参数,以正确使用CodeComposer Studio和DSK[3]。在Simulink仿真配置参数中,有必要进行以下更改。
- 2022-01-25 20:10:38下载
- 积分:1
-
C++的源程序,是一本非常经典的书籍,可以用在很多…
c数值算法的源码,是非常经典的书籍,可以用在很多方面-c of the source numerical algorithm is a very classic books, can be used in many ways
- 2022-01-25 16:29:13下载
- 积分:1
-
由给出的三个点坐标,拟合出一条样条曲线,对于工程或数据分析的同志有作用。...
由给出的三个点坐标,拟合出一条样条曲线,对于工程或数据分析的同志有作用。-Three points by the given coordinates, fitting out of a spline curve, or data analysis for the project has the role of comrades.
- 2022-04-22 10:39:19下载
- 积分:1
-
C#实现中值平均数滤波算法
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
///
/// 中位平均值滤波算法
///
public class DLMidPerFilter
{
private MHBetterList mOrignList = new MHBetterList(); //原始数组
private MHBetterList mFilterList = new MHBetterList(); //过滤数组
private float mCurrentValue; //记录当前值
private int mResetNum = 0; //均值重置个数
public bool mIfReset = false; //判断是否开始均值重置
///
/// 过滤算法
///
/// 新输入的值
///
- 2023-05-07 23:20:03下载
- 积分:1
-
Learnin Mathematics with the ABACUS Activity
Learnin Mathematics with the ABACUS Activity-book
part 5
- 2022-03-31 23:57:31下载
- 积分:1
-
实现数学中的warshall算法,既完成对传递闭包的求解
实现数学中的warshall算法,既完成对传递闭包的求解-To achieve in mathematics warshall algorithm, both to complete the transitive closure of the solution
- 2022-01-21 02:39:12下载
- 积分:1