-
动态数组模板类的C++实现
动态数组模板类的C++实现#ifndef ARRAY_CLASS#define ARRAY_CLASS#include #include using namespace std;#ifndef NULLconst int NULL = 0;#endif//错误类型集合, 共三种,数组大小错误,内存分配错误和下标越界enum ErrorType {invalidArraySize, memoryAllocationError, indexOutOfRange};//错误信息char *errorMsg[] = {"Invalid array size", "Memery allocation error", "Index out of range"};//数组类模板声明templateclass Array{ public: Array(int sz = 50); Array(const Array &A); ~Array(void); Array& operator = (const Array &rhs); //重载=,使数组对象可以整体赋值 T& operator[](int n);
- 2022-01-28 05:28:35下载
- 积分:1
-
s26
C++ implementation for S26
- 2012-01-25 04:34:16下载
- 积分:1
-
UKF、EKF,CKF,STUKF
无迹卡尔曼滤波,强跟踪无迹卡尔曼滤波,ckf ,ekf(unscented kalman filter ;strong tracking unscented kalman filter)
- 2018-06-22 15:46:07下载
- 积分:1
-
多目标车辆路径问题 Ant Colony Optimization
蚁群优化求解具有时间窗的多目标车辆路径问题(Ant Colony Optimization to solve the multiobjective Vehicle Routing Problem with Time Windows)
- 2020-06-25 06:20:01下载
- 积分:1
-
HistDemoA
数字图像处理实验——直方图的均衡化,打开图像并实现其均衡化(Digital image processing experiments- histogram equalization, open the image and realize its equalization)
- 2014-06-07 00:05:05下载
- 积分:1
-
shizhong
说明: 这是c++的mfc写的一个时钟,能够有起始 ,停止,重置的功能。(This is c++ The mfc write a clock, can start, stop, reset functions.)
- 2008-12-07 11:15:04下载
- 积分:1
-
Edge-Detection-Algorithm
图像边缘检测,实现了几种边缘检测算法,像Roberts,Sobel,Prewitt,Canny等(Edge detection, edge detection algorithm to achieve several, such as Roberts, Sobel, Prewitt, Canny, etc.)
- 2021-03-17 08:49:21下载
- 积分:1
-
VisualCplus6.0
VisualC++6.0基础与实例教程,VisualC++6.0使用说明,还有具体的实例,以及源代码(VisualC++6.0-based tutorials and examples, VisualC++6.0 instructions for use, there are specific examples and source code)
- 2010-01-14 14:30:03下载
- 积分:1
-
Histogram
上传的小程序是用VC++编程的,主要显示一般位图的直方图。(Upload applet programming with VC++ general bitmap histogram.)
- 2012-12-17 15:58:33下载
- 积分:1
-
MD5算法源代码
MD5算法源代码,非常的实用,可以用于研究和学习交流
- 2022-07-25 00:57:05下载
- 积分:1