摘要: 删除链表的任意位置 //删除任意位置 bool LLsit_Del(LList_t *Head,int dest) { int num = 0; //记录头结点和首结点 LList_t *Phead = Head; LList_t *Pnext = Head->next; //1.判断链表是否为空, 阅读全文
posted @ 2024-04-22 21:59 歪币八卜 阅读(32) 评论(0) 推荐(2)