线性表的创建与输出程序c++语言 struct List//首先定义一个表的结构 { Elem *elem; int length; int listsize; }; //创建一个空线性表 Status InitList(List &L) { L.elem = (Elem *)malloc(LIST_INIT_SIZE*sizeof(Elem)); if(!L.elem) { return 0; } L.length = 0; L.listsize = LIST_INIT_SIZE; return 1; } //销毁线性表L Stat