有关顺序表的
程序代码:
Status InitList_Sq(SqList &L){ //构造一个空的顺序表L L.elem=new ElemType[MAXSIZE]; if (!L.elem) exit(OVERFLOW); L.length=0; return OK; }为什么顺序表的初始化要返回一个OK;
求高手指点
Status InitList_Sq(SqList &L){ //构造一个空的顺序表L L.elem=new ElemType[MAXSIZE]; if (!L.elem) exit(OVERFLOW); L.length=0; return OK; }为什么顺序表的初始化要返回一个OK;