供参考: void CreateList(SqList*& L,ElemType a[],int n);//C++,支持地址引用的写法 void CreateList(SqList** L,ElemYype a[],int n);//纯C 的写法,函数体内 L 全用(*L)代替。