温柔枫叶

文章
4
资源
0
加入时间
2年10月21天

数组的底层实现

#include <iostream>#include <stdlib.h>#include <string.h>#define max 8#define Elemtype intusing namespace std;typedef struct { Elemtype *base; int *bounds; int dim;//数组维数 ...