【文件属性】:
文件名称:C++数组模板封装
文件大小:12KB
文件格式:H
更新时间:2016-04-11 02:23:52
c++ array
C++数组模板封装,主要成员包括:
public:
Array();
Array(int size);
Array(int size, T value);
Array(Array & other);
Array(T * arr, int size);
Array(int size, T* arr, int arrSize);
template Array(Array & other);
template Array(T2 * arr, int size);
template Array(int size, T2 * arr, int arrSize);
~Array(void);
inline int Size(); // 返回元素的个数
inline int MemorySize(); // 返回实际占用内存的字节数
inline void ReSize(int size); // 重新设定大小,清除所有的数据
inline T * Buffer(); // 获取内部数组的首地址
inline void SetValue(int index, T val); // 设置第index个数据的值
inline T GetValue(int index); // 获得第index个数据
T SquareOfNorm2(); // 2范式的平方
T SquareOfDistance(Array & another); // 距离另一个数组的距离的平方
T Distance(Array & another); // 计算两个数组的距离
Array Cut(int start, int len); // 从向量中截取一部分成为新的向量
Array Cut(int start); // 将数组剪切一部分,返回新的数组,从start开始,一直到结束
T Norm0(); // 0范式,即求非0元素个数
T Norm1(); // 1范式,即求所有元素的和
T Norm2(); // 2范式,即求所有元素的平方和开根号
T Norm(int p = 2); // p范式
T Sum(); // 所有元素的和
void SetSmallValueToZero(); // 将绝对值小于eps的数值设置为0
T AbsMin(); // 返回绝对值的最小值
T Min(); // 返回最小值
T AbsMax(); // 返回绝对值的最大值
T Max(); // 返回最大值
void Offset(T value); // 所有数据偏移value
T Average(); // 获得所有数据的平均值
void AverageTo(T value = 0); // 将数据平均化到某个数值
T Variance(); // 返回方差
void GaussianWhiten(); // 高斯白化,使得数组平均值为0,方差为1
void AbsValues(); // 所有的元素取绝对值
bool InfinityCheck(T maxValue = 1E50); // 数据检查,看数组中是否有数据为无穷大
bool IsZero(); // 返回数据是否全部为0
void Clear(); // 将数据全部清0
void Normalization(); // 正规化,每个元素平方和为1
void SumAsOne(); // 是每个元素的和为1
void SetMinTo(T value); // 将小于value的元素全部设置为value
void SetMaxTo(T value); // 将大于value的元素全部设置为value
virtual void WriteToTextFile(string filename, bool append = false);
virtual void WriteToTextFile(ofstream & o);
virtual void ReadFromTextFile(string filename);
virtual void ReadFromTextFile(ifstream & i);
protected:
inline void Init(int size);
public:
Array & operator = (Array & v);
Array & operator = (T value);
T & operator[] (int index);
template Array & operator = (Array & v);
template friend ostream & operator << (ostream & out, Array & vector);
template friend istream & operator >> (istream & in, Array & vector);