书中代码:
void union(List *La,List Lb)
{
int La_len,Lb,_len,i;
ElemType e;
La_len=ListLenth(La);
Lb_len=ListLenth(Lb);
for(i=1;i<=Lb_len;i++)
{
GetElem(Lb,i,e);
if(!LocateElem(La,e,equal))
ListInsert(La,++La_len,e);
}
}
List是类型名吗?
为什么La是指针的形式,Lb却不是?
书中ListLenth函数的原型是ListLenth(L)
但本函数中调用的时候,传入的参数既有*La(指针),又有Lb(非指针),何解?