void DestroyList(ListLink &L) {// 初始条件:线性表L已存在。操作结果:销毁线性表L( ListLink q; while (L) { q = L->next; free(L); L = q; } }