数组的底层实现 #include <iostream>#include <stdlib.h>#include <string.h>#define max 8#define Elemtype intusing namespace std;typedef struct { Elemtype *base; int *bounds; int dim;//数组维数 ... 数据结构 2023-10-13 52 点赞 0 评论 78 浏览