【初探数据布局】线性表——链表(二)带头双向循环链表(详解与实现) ...

打印 上一主题 下一主题

主题 977|帖子 977|积分 2931

1. 什么是带头双向循环链表?

带头双向循环链表,顾名思义,包罗以下几个重要特点:


  • 双向性:每个节点不仅有指向下一个节点的next指针,还有一个指向前一个节点的prev指针。这使得遍历链表时可以从任意一个节点开始,向前或向后都可以。
  • 循环性:链表的最后一个节点的next指针指向头节点,而头节点的prev指针指向最后一个节点,形成一个闭环。即链表没有尾节点,头节点和尾节点毗连起来,方便链表的尾插尾删等操作。
  • 头节点(哨兵节点):链表通过引入一个特别的头节点(哨兵节点)来简化插入和删除操作。这个头节点自己不存储现实数据,只是作为一个占位符,避免了空链表或单一节点链表的特别情况。(我的上一篇文章解说过,欢迎来学习哦【初探数据布局】链表OJ算法——哨兵位(归并两个有序链表详解))
2. 带头双向循环链表的布局

  1. typedef int LTDataType;
  2. typedef struct ListNode
  3. {
  4.     LTDataType data;       // 存储节点数据
  5.     struct ListNode* next; // 指向下一个节点
  6.     struct ListNode* prev; // 指向前一个节点
  7. } ListNode;
复制代码
每个ListNode布局体包罗:


  • data:保存节点的数据。
  • next:指向下一个节点。
  • prev:指向前一个节点。
3. 带头双向循环链表的操作

带头双向循环链表支持常见的增删查改操作,以下是常用操作的实现。
3.1 初始化链表

  1. ListNode* ListInit()
  2. {
  3.     ListNode* head = (ListNode*)malloc(sizeof(ListNode));
  4.     if (head == NULL) {
  5.         perror("malloc fail");
  6.         exit(-1);
  7.     }
  8.     head->next = head;  // 头节点的next指向自己,形成循环
  9.     head->prev = head;  // 头节点的prev也指向自己,形成循环
  10.     return head;
  11. }
复制代码
在初始化时,创建一个头节点,并将其next和prev指针都指向自身,这样链表初始时是空的,而且形成了一个循环布局。
3.2 插入节点



  • 尾插操作:在链表尾部插入新节点。
  1. void ListPushBack(ListNode* pHead, LTDataType x)
  2. {
  3.     assert(pHead);
  4.     ListInsert(pHead, x);
  5. }
复制代码
ListInsert用于执行具体的插入操作,它将新节点插入到链表末尾。


  • 头插操作:在链表头部插入新节点。
  1. void ListPushFront(ListNode* pHead, LTDataType x)
  2. {
  3.     assert(pHead);
  4.     ListInsert(pHead->next, x);
  5. }
复制代码
3.3 删除节点



  • 尾删操作:删除链表尾部的节点。
  1. void ListPopBack(ListNode* pHead)
  2. {
  3.     assert(pHead);
  4.     ListNode* tail = pHead->prev;
  5.     ListErase(tail);
  6. }
复制代码


  • 头删操作:删除链表头部的节点。
  1. void ListPopFront(ListNode* pHead)
  2. {
  3.     assert(pHead);
  4.     ListErase(pHead->next);
  5. }
复制代码
3.4 查找节点

通过值查找链表中的节点。
  1. ListNode* ListFind(ListNode* pHead, LTDataType x)
  2. {
  3.     assert(pHead);
  4.     ListNode* cur = pHead->next;
  5.     while (cur != pHead) {
  6.         if (cur->data == x)
  7.             return cur;
  8.         cur = cur->next;
  9.     }
  10.     return NULL;
  11. }
复制代码
3.5 删除指定节点

通过pos指针删除指定位置的节点。
  1. void ListErase(ListNode* pos)
  2. {
  3.     assert(pos);
  4.     ListNode* after = pos->next;
  5.     ListNode* behind = pos->prev;
  6.     behind->next = pos->next;
  7.     after->prev = pos->prev;
  8.     free(pos);
  9.     pos = NULL;
  10. }
复制代码
4. 带头双向循环链表的上风


  • 简化链表操作:带头节点和双向指针的联合使得在链表的任意位置插入和删除操作更加简便。特别是通过哨兵节点,可以避免单独处理空链表、头节点和尾节点的特别情况。
  • 双向遍历:通过prev和next指针,我们可以实现从链表任意节点出发,向前或向后遍历。这为一些复杂操作提供了极大的灵活性。
  • 内存管理:链表在操作时可以动态地分配和开释节点内存,减少内存浪费。
5. 完整代码

List.h

  1. #pragma once
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4. #include<assert.h>
  5. // 带头+双向+循环链表增删查改实现
  6. typedef int LTDataType;
  7. typedef struct ListNode
  8. {
  9.         LTDataType data;
  10.         struct ListNode* next;
  11.         struct ListNode* prev;
  12. }ListNode;
  13. // 创建返回链表的头结点.
  14. ListNode* ListInit();
  15. // 双向链表销毁
  16. void ListDestory(ListNode* pHead);
  17. // 双向链表打印
  18. void ListPrint(ListNode* pHead);
  19. // 双向链表尾插
  20. void ListPushBack(ListNode* pHead, LTDataType x);
  21. // 双向链表尾删
  22. void ListPopBack(ListNode* pHead);
  23. // 双向链表头插
  24. void ListPushFront(ListNode* pHead, LTDataType x);
  25. // 双向链表头删
  26. void ListPopFront(ListNode* pHead);
  27. // 双向链表查找
  28. ListNode* ListFind(ListNode* pHead, LTDataType x);
  29. // 双向链表在pos的前面进行插入
  30. void ListInsert(ListNode* pos, LTDataType x);
  31. // 双向链表删除pos位置的节点
  32. void ListErase(ListNode* pos);
复制代码
List.c

  1. #define  _CRT_SECURE_NO_WARNINGS 1
  2. #include"List.h"
  3. ListNode* ListInit()
  4. {
  5.         //设置哨兵位头结点
  6.         ListNode* head = (ListNode*)malloc(sizeof(ListNode));
  7.         if (head == NULL) {
  8.                 perror("malloc fail");
  9.                 exit(-1);
  10.         }
  11.         head->next = head;
  12.         head->prev = head;
  13.         return head;
  14. }
  15. void ListDestory(ListNode* pHead)
  16. {
  17.         assert(pHead);
  18.         ListNode* cur = pHead->next;
  19.         while (cur != pHead) {
  20.                 ListNode* next = cur->next;
  21.                 free(cur);
  22.                 cur = next;
  23.         }
  24.         free(pHead);
  25.         pHead = NULL;
  26. }
  27. void ListPrint(ListNode* pHead)
  28. {
  29.         assert(pHead);
  30.         ListNode* cur = pHead->next;
  31.         printf("HEAD=>");
  32.         while (cur != pHead) {
  33.                 printf("%d<=>",cur->data);
  34.                 cur = cur->next;
  35.         }
  36.         printf("\n");
  37. }
  38. ListNode* CreateNewNode(LTDataType x)
  39. {
  40.         ListNode* newnode = (ListNode*)malloc(sizeof(ListNode));
  41.         if (newnode == NULL) {
  42.                 perror("malloc fail");
  43.                 exit(-1);
  44.         }
  45.         newnode->data = x;
  46.         newnode->next = NULL;
  47.         newnode->prev = NULL;
  48.         return newnode;
  49. }
  50. void ListPushBack(ListNode* pHead, LTDataType x)
  51. {
  52.         assert(pHead);
  53.         ListInsert(pHead, x);
  54. }
  55. void ListPopBack(ListNode* pHead)
  56. {
  57.         assert(pHead);
  58.         ListNode* tail = pHead->prev;
  59.         ListErase(tail);
  60. }
  61. void ListPushFront(ListNode* pHead, LTDataType x)
  62. {
  63.         assert(pHead);
  64.         ListInsert(pHead->next, x);
  65. }
  66. void ListPopFront(ListNode* pHead)
  67. {
  68.         assert(pHead);
  69.         ListErase(pHead->next);
  70. }
  71. ListNode* ListFind(ListNode* pHead, LTDataType x)
  72. {
  73.         assert(pHead);
  74.         ListNode* cur = pHead->next;
  75.         while (cur != pHead) {
  76.                 if (cur->data == x)
  77.                         return cur;
  78.                 cur = cur->next;
  79.         }
  80.         return NULL;
  81. }
  82. void ListInsert(ListNode* pos, LTDataType x)
  83. {
  84.         assert(pos);
  85.         ListNode* newnode = CreateNewNode(x);
  86.         ListNode* cur = pos->prev;
  87.         pos->prev = newnode;
  88.         newnode->next = pos;
  89.         cur->next = newnode;
  90.         newnode->prev = cur;
  91. }
  92. void ListErase(ListNode* pos)
  93. {
  94.         assert(pos);
  95.         ListNode* after = pos->next;
  96.         ListNode* behind = pos->prev;
  97.         behind->next = pos->next;
  98.         after->prev = pos->prev;
  99.         free(pos);
  100.         pos = NULL;
  101. }
复制代码
Test.c

在现实使用时,我们可以通过以下代码进行链表的操作:
  1. void test()
  2. {
  3.     ListNode* plist;
  4.     plist = ListInit();  // 初始化链表
  5.     // 插入元素
  6.     ListPushBack(plist, 1);
  7.     ListPushBack(plist, 2);
  8.     ListPushBack(plist, 3);
  9.     ListPushBack(plist, 4);
  10.     ListPrint(plist);  // 打印链表
  11.     // 删除元素
  12.     ListPopBack(plist);
  13.     ListPopBack(plist);
  14.     ListPrint(plist);  // 打印链表
  15.     // 头部插入
  16.     ListPushFront(plist, 0);
  17.     ListPrint(plist);  // 打印链表
  18.     ListPopFront(plist);
  19.     ListPrint(plist);  // 打印链表
  20.     // 查找元素并插入
  21.     ListNode* pos = ListFind(plist, 2);
  22.     ListInsert(pos, 20);
  23.     ListPrint(plist);  // 打印链表
  24. }
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

石小疯

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表