数据结构顺序存储结构
数据结构顺序表第一种方法:#include<stdio.h>#define MAX_SIZE 50typedef int ElemType; //自定义类型typedef struct { //结构体