温柔枫叶

文章
4
资源
0
加入时间
3年0月20天

数组的底层实现

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