会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
real-watson
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)
编辑
公告
导航
博客园
首页
新随笔
新文章
联系
订阅
管理