主题:数据结构遇到的小问题
void InitList(SqList &L)// 操作结果:构造一个空的顺序线性表L
{
L.elem = (ElemType *)malloc(LIST_INIT_SIZE*sizeof(ElemType));
if (!L.elem)
exit(OVERFLOW);//存储分配失败
L.length = 0;//空表长度为0
L.listsize = LIST_INIT_SIZE;//初始存储容量
}
error C2065: 'SqList' : undeclared identifier
error C2065: 'L' : undeclared identifier
这是什么原因啊?
{
L.elem = (ElemType *)malloc(LIST_INIT_SIZE*sizeof(ElemType));
if (!L.elem)
exit(OVERFLOW);//存储分配失败
L.length = 0;//空表长度为0
L.listsize = LIST_INIT_SIZE;//初始存储容量
}
error C2065: 'SqList' : undeclared identifier
error C2065: 'L' : undeclared identifier
这是什么原因啊?