#2
邓士林2013-04-24 22:49
|
怎么用c++的引用“&”,传递参数,需要包含哪些头文件
这个是初始化线性表的代码
Status InitList(SqList &L)
{
L.elem = new ElemType[MAXSIZE];
if(!L.elem)
exit OVERFLOW;
L.length = 0;
L.listsize = MAXSIZE;
return OK;
}//InitList
错误指示是missing')'before &
求指教