当前位置:   article > 正文

双向链表实现(C语言)_c语言 双链表实现

c语言 双链表实现

目录

 

1. 概念

2. 构造与使用

2.1 双链表的结构体

2.2 从头节点添加

2.3 从尾部添加

2.4 从中间添加节点

2.5 添加节点实例:按升序插入一个节点

2.6 从头结点处删除节点

2.7 从尾节点处删除节点

2.8 从中间删除节点

2.9 删除节点的一个实例:删除指定的节点

2.10 清空链表

2.11 完整代码


1. 概念

百度百科:双向链表也叫双链表,是链表的一种,它的每个数据结点中都有两个指针,分别指向直接后继和直接前驱。所以,从双向链表中的任意一个结点开始,都可以很方便地访问它的前驱结点和后继结点。一般我们都构造双向循环链表

2. 构造与使用

2.1 双链表的结构体

  1. struct _d_list
  2. {
  3. int data;
  4. struct _d_list *pre;
  5. struct _d_list *next;
  6. };
  7. typedef struct _d_list DL_LINK_LIST;
  8. //节点的初始化
  9. void init_d_list_node(DL_LINK_LIST * node, const int data)
  10. {
  11. node->data = data;
  12. node->pre = NULL;
  13. node->next = NULL;
  14. }

2.2 从头节点添加

添加至表头 将新数据元素添加到表头,只需要将该元素与表头元素建立双层逻辑关系即可。

换句话说,假设新元素节点为 temp,表头节点为 head,则需要做以下 2 步操作即可:

temp->next = head; head->prior = temp;

将 head 移至 temp,重新指向新的表头;

  1. //从头添加
  2. //添加至表头 将新数据元素添加到表头,只需要将该元素与表头元素建立双层逻辑关系即可。
  3. //
  4. //换句话说,假设新元素节点为 temp,表头节点为 head,则需要做以下 2 步操作即可:
  5. //
  6. //temp->next = head; head->prior = temp;
  7. //将 head 移至 temp,重新指向新的表头;
  8. DL_LINK_LIST * _d_list_add_head(DL_LINK_LIST *head, int data)
  9. {
  10. if (head == NULL)
  11. {
  12. printf("@_d_list_add_head, param head is null, can not trans continue!\n");
  13. return head;
  14. }
  15. // 创建节点
  16. DL_LINK_LIST *node = (DL_LINK_LIST *)malloc(sizeof(DL_LINK_LIST));
  17. if (NULL == node)
  18. {
  19. printf("Not enogh memory to get!\n");
  20. return head;
  21. }
  22. init_d_list_node(node, data);
  23. printf("@_d_list_add_head---->try to add %d.\n", data);
  24. // 从头结点添加
  25. node->next = head; // 新节点作为头 那么新节next就是目前的head node->next = head;
  26. head->pre = node; // 当前head的上一个节点pre就是新节点
  27. head = node; // 链接完成后 记录新的head
  28. return head;
  29. }

2.3 从尾部添加

从尾部添加双向链表节点,较简单。

  1. // 从尾部添加
  2. DL_LINK_LIST * _d_list_add_tail(DL_LINK_LIST *head, int data)
  3. {
  4. printf("@_d_list_add_tail---->try to add %d.\n", data);
  5. if (head == NULL)
  6. {
  7. printf("@_d_list_add_tail, param head is null, can not trans continue!\n");
  8. return head;
  9. }
  10. // 创建节点
  11. DL_LINK_LIST *node = (DL_LINK_LIST *)malloc(sizeof(DL_LINK_LIST));
  12. if (NULL == node)
  13. {
  14. printf("Not enogh memory to get!");
  15. return head;
  16. }
  17. init_d_list_node(node, data);
  18. // 找到链表的最后一个元素
  19. DL_LINK_LIST *p = head;
  20. while (p->next != NULL)
  21. {
  22. p = p->next;
  23. }
  24. // add
  25. p->next = node;
  26. node->pre = p;
  27. return head;
  28. }

2.4 从中间添加节点

从中间添加节点,头结点不变,代码如下

  1. bool _d_list_insert_mid(DL_LINK_LIST * p, int data)
  2. {
  3. // p为根据条件找到的p->data >= data 的中间节点 新节点要插入在p之前
  4. if (p == NULL)
  5. {
  6. printf("@_d_list_insert_mid, param in node is NULL, can not do insert\n");
  7. return false;
  8. }
  9. // 创建节点
  10. DL_LINK_LIST *node = (DL_LINK_LIST *)malloc(sizeof(DL_LINK_LIST));
  11. if (NULL == node)
  12. {
  13. printf("Not enogh memory to get!");
  14. return false;
  15. }
  16. init_d_list_node(node, data);
  17. // 如果找到了 p->data >= data node 在p前面 因此节点关系为
  18. /*
  19. pre ---------> p--------->
  20. <----------
  21. left<--node -->right
  22. node 的pre指向pre
  23. node的next 指向p
  24. 以p来标识
  25. */
  26. printf("@_d_list_insert_mid---->try to insert %d.\n", data);
  27. node->pre = p->pre; // 1. 连接前节点pre与新增节点node 以p标识前节点为 p->pre 因此 node->pre = p->pre
  28. node->pre->next = node; // 2.前节点的next 连接到node 因此 标识为 node->pre->next = node;
  29. node->next = p; // 3.连接 node与p
  30. p->pre = node; // 4.p的前节点为新增node
  31. return true;
  32. }

2.5 添加节点实例:按升序插入一个节点

  1. // 以升序排序的案例为例子 插入到指定节点
  2. // 从尾部添加
  3. DL_LINK_LIST * _d_list_insert_by_data(DL_LINK_LIST *head, int data)
  4. {
  5. if (head == NULL)
  6. {
  7. printf("@_d_list_insert_by_data, param head is null, can not trans continue!\n");
  8. return head;
  9. }
  10. DL_LINK_LIST *p = head;
  11. while (p->next != NULL &&(p->data <data))// 要保证p不能为NULL 因此判断条件为p->next != NULL
  12. {
  13. p = p->next;
  14. }
  15. printf("@_d_list_insert_by_data---->try to insert %d.\n", data);
  16. if (p->data >= data)
  17. {
  18. // 如果插入头结点之前
  19. if (p == head)
  20. {
  21. head = _d_list_add_head(head, data);
  22. }
  23. else
  24. {
  25. // 找到在中间 按照中间法插入 head 不变
  26. (void)_d_list_insert_mid(p, data);
  27. }
  28. }
  29. else
  30. {
  31. // 未找到比data大的数据 添加在末尾
  32. printf("@_d_list_insert_by_data---->未找到比data大的数据 添加在末尾 try to insert %d.\n", data);
  33. head = _d_list_add_tail(head, data);
  34. }
  35. return head;
  36. }

2.6 从头结点处删除节点

  1. DL_LINK_LIST * _d_list_del_head(DL_LINK_LIST *head)
  2. {
  3. if (head == NULL)
  4. {
  5. printf("@_d_list_del_head, the list head is NULL!\n");
  6. return head;
  7. }
  8. // 删除头节点
  9. DL_LINK_LIST *p = head;
  10. head = head->next; // 将head后移
  11. if (head != NULL)
  12. {
  13. head->pre = NULL;
  14. }
  15. free(p);
  16. p = NULL;
  17. return head;
  18. }

2.7 从尾节点处删除节点

  1. DL_LINK_LIST * _d_list_del_tail(DL_LINK_LIST *head)
  2. {
  3. if (head == NULL)
  4. {
  5. printf("@_d_list_del_tail, the list head is NULL!\n");
  6. return head;
  7. }
  8. DL_LINK_LIST *p = head;
  9. while (p->next != NULL)
  10. {
  11. p = p->next;
  12. }
  13. // 删除尾节点p p为尾结点 上一个可能是头结点 头结点pre 为NULL
  14. if (p->pre != NULL)
  15. {
  16. p->pre->next = NULL; // 尾节点的上一个节点next指向空
  17. }
  18. if (p == head)
  19. {
  20. //如果当前删除的是head 将head置空
  21. head = NULL;
  22. }
  23. free(p);
  24. p = NULL;
  25. return head;
  26. }

2.8 从中间删除节点

  1. //从中间删除
  2. bool _d_list_del_mid_node(DL_LINK_LIST *p)
  3. {
  4. if (p == NULL)
  5. {
  6. printf("@_d_list_del_mid_node, param in node is NULL, can not do insert\n");
  7. return false;
  8. }
  9. p->pre->next = p->next; // 前节点指向后节点 next
  10. p->next->pre = p->pre; // 后节点指向前节点 pre
  11. free(p);
  12. p = NULL;
  13. return true;
  14. }

2.9 删除节点的一个实例:删除指定的节点

  1. // 删除指定节点
  2. DL_LINK_LIST * _d_list_del_by_data(DL_LINK_LIST *head, int data)
  3. {
  4. if (head == NULL)
  5. {
  6. printf("@_d_list_del_by_data, param head is null, can not trans continue!\n");
  7. return head;
  8. }
  9. printf("@_d_list_del_by_data---->try to delete %d.\n", data);
  10. DL_LINK_LIST *p = head;
  11. while (p->next != NULL && (p->data != data))
  12. {
  13. p = p->next;
  14. }
  15. if (p->data == data)
  16. {
  17. // 如果是头结点
  18. if(p == head)
  19. {
  20. // 删除头
  21. head = _d_list_del_head(head);
  22. }
  23. else
  24. {
  25. if (p->next == NULL)
  26. {
  27. // 删除尾节点
  28. head = _d_list_del_tail(head);
  29. }
  30. else
  31. {
  32. // head 不变
  33. (void)_d_list_del_mid_node(p);
  34. }
  35. }
  36. }
  37. else
  38. {
  39. printf("@_d_list_del_by_data, can not find the data %d\n", data);
  40. }
  41. return head;
  42. }

2.10 清空链表

  1. void _d_list_del_all(DL_LINK_LIST *head)
  2. {
  3. printf("_d_list_del_all******************\n");
  4. while (head != NULL)
  5. {
  6. //head = _d_list_del_head(head); //测试通过
  7. head = _d_list_del_tail(head);
  8. }
  9. }

2.11 完整代码

代码已在visual 2017编译通过,完整的使用实例代码如下:

  1. // d_list.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
  2. //
  3. #include <iostream>
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. struct _d_list
  7. {
  8. int data;
  9. struct _d_list *pre;
  10. struct _d_list *next;
  11. };
  12. typedef struct _d_list DL_LINK_LIST;
  13. void init_d_list_node(DL_LINK_LIST * node, const int data)
  14. {
  15. node->data = data;
  16. node->pre = NULL;
  17. node->next = NULL;
  18. }
  19. //从头添加
  20. //添加至表头 将新数据元素添加到表头,只需要将该元素与表头元素建立双层逻辑关系即可。
  21. //
  22. //换句话说,假设新元素节点为 temp,表头节点为 head,则需要做以下 2 步操作即可:
  23. //
  24. //temp->next = head; head->prior = temp;
  25. //将 head 移至 temp,重新指向新的表头;
  26. DL_LINK_LIST * _d_list_add_head(DL_LINK_LIST *head, int data)
  27. {
  28. if (head == NULL)
  29. {
  30. printf("@_d_list_add_head, param head is null, can not trans continue!\n");
  31. return head;
  32. }
  33. // 创建节点
  34. DL_LINK_LIST *node = (DL_LINK_LIST *)malloc(sizeof(DL_LINK_LIST));
  35. if (NULL == node)
  36. {
  37. printf("Not enogh memory to get!\n");
  38. return head;
  39. }
  40. init_d_list_node(node, data);
  41. printf("@_d_list_add_head---->try to add %d.\n", data);
  42. // 从头结点添加
  43. node->next = head; // 新节点作为头 那么新节next就是目前的head node->next = head;
  44. head->pre = node; // 当前head的上一个节点pre就是新节点
  45. head = node; // 链接完成后 记录新的head
  46. return head;
  47. }
  48. // 从尾部添加
  49. DL_LINK_LIST * _d_list_add_tail(DL_LINK_LIST *head, int data)
  50. {
  51. printf("@_d_list_add_tail---->try to add %d.\n", data);
  52. if (head == NULL)
  53. {
  54. printf("@_d_list_add_tail, param head is null, can not trans continue!\n");
  55. return head;
  56. }
  57. // 创建节点
  58. DL_LINK_LIST *node = (DL_LINK_LIST *)malloc(sizeof(DL_LINK_LIST));
  59. if (NULL == node)
  60. {
  61. printf("Not enogh memory to get!");
  62. return head;
  63. }
  64. init_d_list_node(node, data);
  65. // 找到链表的最后一个元素
  66. DL_LINK_LIST *p = head;
  67. while (p->next != NULL)
  68. {
  69. p = p->next;
  70. }
  71. // add
  72. p->next = node;
  73. node->pre = p;
  74. return head;
  75. }
  76. bool _d_list_insert_mid(DL_LINK_LIST * p, int data)
  77. {
  78. // p为根据条件找到的p->data >= data 的中间节点 新节点要插入在p之前
  79. if (p == NULL)
  80. {
  81. printf("@_d_list_insert_mid, param in node is NULL, can not do insert\n");
  82. return false;
  83. }
  84. // 创建节点
  85. DL_LINK_LIST *node = (DL_LINK_LIST *)malloc(sizeof(DL_LINK_LIST));
  86. if (NULL == node)
  87. {
  88. printf("Not enogh memory to get!");
  89. return false;
  90. }
  91. init_d_list_node(node, data);
  92. // 如果找到了 p->data >= data node 在p前面 因此节点关系为
  93. /*
  94. pre ---------> p--------->
  95. <----------
  96. left<--node -->right
  97. node 的pre指向pre
  98. node的next 指向p
  99. 以p来标识
  100. */
  101. printf("@_d_list_insert_mid---->try to insert %d.\n", data);
  102. node->pre = p->pre; // 1. 连接前节点pre与新增节点node 以p标识前节点为 p->pre 因此 node->pre = p->pre
  103. node->pre->next = node; // 2.前节点的next 连接到node 因此 标识为 node->pre->next = node;
  104. node->next = p; // 3.连接 node与p
  105. p->pre = node; // 4.p的前节点为新增node
  106. return true;
  107. }
  108. // 以升序排序的案例为例子 插入到指定节点
  109. // 从尾部添加
  110. DL_LINK_LIST * _d_list_insert_by_data(DL_LINK_LIST *head, int data)
  111. {
  112. if (head == NULL)
  113. {
  114. printf("@_d_list_insert_by_data, param head is null, can not trans continue!\n");
  115. return head;
  116. }
  117. DL_LINK_LIST *p = head;
  118. while (p->next != NULL &&(p->data <data))// 要保证p不能为NULL 因此判断条件为p->next != NULL
  119. {
  120. p = p->next;
  121. }
  122. printf("@_d_list_insert_by_data---->try to insert %d.\n", data);
  123. if (p->data >= data)
  124. {
  125. // 如果插入头结点之前
  126. if (p == head)
  127. {
  128. head = _d_list_add_head(head, data);
  129. }
  130. else
  131. {
  132. // 找到在中间 按照中间法插入 head 不变
  133. (void)_d_list_insert_mid(p, data);
  134. }
  135. }
  136. else
  137. {
  138. // 未找到比data大的数据 添加在末尾
  139. printf("@_d_list_insert_by_data---->未找到比data大的数据 添加在末尾 try to insert %d.\n", data);
  140. head = _d_list_add_tail(head, data);
  141. }
  142. return head;
  143. }
  144. DL_LINK_LIST * _d_list_del_head(DL_LINK_LIST *head)
  145. {
  146. if (head == NULL)
  147. {
  148. printf("@_d_list_del_head, the list head is NULL!\n");
  149. return head;
  150. }
  151. // 删除头节点
  152. DL_LINK_LIST *p = head;
  153. head = head->next; // 将head后移
  154. if (head != NULL)
  155. {
  156. head->pre = NULL;
  157. }
  158. free(p);
  159. p = NULL;
  160. return head;
  161. }
  162. DL_LINK_LIST * _d_list_del_tail(DL_LINK_LIST *head)
  163. {
  164. if (head == NULL)
  165. {
  166. printf("@_d_list_del_tail, the list head is NULL!\n");
  167. return head;
  168. }
  169. DL_LINK_LIST *p = head;
  170. while (p->next != NULL)
  171. {
  172. p = p->next;
  173. }
  174. // 删除尾节点p p为尾结点 上一个可能是头结点 头结点pre 为NULL
  175. if (p->pre != NULL)
  176. {
  177. p->pre->next = NULL; // 尾节点的上一个节点next指向空
  178. }
  179. if (p == head)
  180. {
  181. //如果当前删除的是head 将head置空
  182. head = NULL;
  183. }
  184. free(p);
  185. p = NULL;
  186. return head;
  187. }
  188. //从中间删除
  189. bool _d_list_del_mid_node(DL_LINK_LIST *p)
  190. {
  191. if (p == NULL)
  192. {
  193. printf("@_d_list_del_mid_node, param in node is NULL, can not do insert\n");
  194. return false;
  195. }
  196. p->pre->next = p->next; // 前节点指向后节点 next
  197. p->next->pre = p->pre; // 后节点指向前节点 pre
  198. free(p);
  199. p = NULL;
  200. return true;
  201. }
  202. // 删除指定节点
  203. DL_LINK_LIST * _d_list_del_by_data(DL_LINK_LIST *head, int data)
  204. {
  205. if (head == NULL)
  206. {
  207. printf("@_d_list_del_by_data, param head is null, can not trans continue!\n");
  208. return head;
  209. }
  210. printf("@_d_list_del_by_data---->try to delete %d.\n", data);
  211. DL_LINK_LIST *p = head;
  212. while (p->next != NULL && (p->data != data))
  213. {
  214. p = p->next;
  215. }
  216. if (p->data == data)
  217. {
  218. // 如果是头结点
  219. if(p == head)
  220. {
  221. // 删除头
  222. head = _d_list_del_head(head);
  223. }
  224. else
  225. {
  226. if (p->next == NULL)
  227. {
  228. // 删除尾节点
  229. head = _d_list_del_tail(head);
  230. }
  231. else
  232. {
  233. // head 不变
  234. (void)_d_list_del_mid_node(p);
  235. }
  236. }
  237. }
  238. else
  239. {
  240. printf("@_d_list_del_by_data, can not find the data %d\n", data);
  241. }
  242. return head;
  243. }
  244. void _d_list_del_all(DL_LINK_LIST *head)
  245. {
  246. printf("_d_list_del_all******************\n");
  247. while (head != NULL)
  248. {
  249. //head = _d_list_del_head(head); //测试通过
  250. head = _d_list_del_tail(head);
  251. }
  252. }
  253. void _d_list_diaplay(DL_LINK_LIST* head)
  254. {
  255. printf("__d_list_diaplay******************\n");
  256. DL_LINK_LIST *p = head;
  257. int i = 1;
  258. while (p != NULL)
  259. {
  260. printf("_d_list_ Num %d data = %d.\n", i, p->data);
  261. p = p->next;
  262. i++;
  263. }
  264. }
  265. int main()
  266. {
  267. std::cout << "Hello World!\n";
  268. // 创建双向链表
  269. DL_LINK_LIST *head = (DL_LINK_LIST*)malloc(sizeof(DL_LINK_LIST));
  270. init_d_list_node(head, -1);
  271. for (int i = 0; i < (13*10); i+= 13)
  272. {
  273. // apped5个
  274. if(i <13*5)
  275. {
  276. // 尾插入
  277. head = _d_list_add_tail(head, i);
  278. }
  279. else
  280. {
  281. //尾插入
  282. head = _d_list_add_head(head, i);
  283. }
  284. }
  285. _d_list_diaplay(head);
  286. // 插入中间数值
  287. head = _d_list_insert_by_data(head, 14);
  288. head = _d_list_insert_by_data(head, 33);
  289. head = _d_list_insert_by_data(head, 120);
  290. _d_list_diaplay(head);
  291. // 删除中间值
  292. head = _d_list_del_by_data(head, 15);
  293. head = _d_list_del_by_data(head, 26);
  294. _d_list_diaplay(head);
  295. // 删除头
  296. head = _d_list_del_by_data(head, 14);
  297. // 删除尾
  298. head = _d_list_del_by_data(head, 120);
  299. _d_list_diaplay(head);
  300. _d_list_del_all(head);
  301. }
  302. // 运行程序: Ctrl + F5 或调试 >“开始执行(不调试)”菜单
  303. // 调试程序: F5 或调试 >“开始调试”菜单
  304. // 入门使用技巧:
  305. // 1. 使用解决方案资源管理器窗口添加/管理文件
  306. // 2. 使用团队资源管理器窗口连接到源代码管理
  307. // 3. 使用输出窗口查看生成输出和其他消息
  308. // 4. 使用错误列表窗口查看错误
  309. // 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目
  310. // 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/660678
推荐阅读
相关标签
  

闽ICP备14008679号