2021年4月2日

摘要: 以B作为删除的节点,代码思路如下: { line *temp = head; while(temp) { if (temp.data == date) { //B as temp temp->next->prev = temp->prev; //M1 temp->prev->next = temp- 阅读全文
posted @ 2021-04-02 13:48 real-watson 阅读(1222) 评论(0) 推荐(0) 编辑
 
摘要: 1. 初始化一个双向链表。 2. 具体方法插入,每个节点可以存在如下结构: struct node_each node{ int data; struct node_each *prev; struct node_each *next; }; A. 头插入法 代码思路: { D->next = he 阅读全文
posted @ 2021-04-02 11:16 real-watson 阅读(1005) 评论(0) 推荐(0) 编辑