函数代码: List MakeEmpty() { List L = (List)malloc(sizeof(struct LNode)); L->Next = NULL; return L; } Position Find(List L, ElementType X) { Position p = L->Next; while (p&&p-&