数组的顺序表示与实现
#include#include#include//使用变长参数表需要引入此头文件#define MAX_DIM 8typedef struct { int * base;//数组元素基址 int * bounds;//数组维数基址,bounds[0]=3,bounds[1]=4,bounds[2]=2,表示3页4行2列的数组 int * constants;//数组映像函数常量基