Status InitList_Sq(SqList &L){ //构造一个空的顺序表L L.elem=new ElemType[MAXSIZE]; if (!L.elem) exit(OVERFLOW); L.length=0; return OK; }