求助,一个小问题malloc(),希望大家给与解决
在数据结构中Status InitList(SqList &L)
{
L.elem=(ElemType *)malloc(LIST_INIT_SIZE*sizeof(ElemType));
if(!L.elem)
exit(OVERFLOW);
L.length=0;
L.listsize=LIST_INIT_SIZE;
return OK;
}
这里L.elem=(ElemType *)malloc(LIST_INIT_SIZE*sizeof(ElemType))中sizeof()括号中为什么是ElemType,不明白。