📄 arrbase.hpp
字号:
#ifndef ARRBASE_HPP#define ARRBASE_HPP// Simplest structure giving a sized array. // Through the ArrBase class, all ops that don't increase the array size can be done// This has the same data element layout as the ExpArr classtemplate<class T, class INT=int>class ArrBase {public: T *ta; INT size;};#endif // ARRBASE_HPP
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -