摘要: 删除链表中的某个x数据 void Del_x(LinkList& L, ElementType x) { LNode* pre = L, * p = L->next, * q; while (p != null) { if (p->data == x) { q = p; p = p->next; p 阅读全文
posted @ 2023-06-29 22:14 满城衣冠 阅读(29) 评论(0) 推荐(0)