初始化

This commit is contained in:
2025-11-09 14:10:48 +08:00
commit 97cc26a21d
12 changed files with 1699 additions and 0 deletions

11
Z_3/array.h Normal file
View File

@@ -0,0 +1,11 @@
template <class T>
class Array {
private:
int dimension_count;
int * dim_size;
T * entry_point;
public:
};