数据结构之顺序表的C语言实现
#include<stdio.h>#include<stdlib.h>#include<string.h>#define MAXSIZE 800#define ET charstruct list{
数据结构之顺序表的C语言实现