void LinkPrint(LinkList*& L) { LinkNode* p; p = L->next; while (p) { cout << p->data << "\t"; p = p->next; } cout << endl; }