顺序存储的类型定义
#define MAXSIZE 100 //多项式的顺序存储结构的类型定义 typedef struct{ float p;//系数 int e;//指数 }Polynomial; typedef struct{ Polynomial *elem; //存储空间的基地址 int length; }PolynomialSqList; //图书表的顺序存储结构的类型定义 typedef struct{ char no[20]; //图书ISBN char name[50]; float price; }Book; typedef struct{ Book *elem; //存储空间的基地址 int length; }BookSqList;