当前位置:   article > 正文

链表界的“扛把子”—双向带头循环链表_带头双向循环链表

带头双向循环链表

目录

一:链表的分类

二:链表的实现

2-1:创建链表

2-2:创建新的结点

2-3:初始化链表 

2-4:打印链表  

2-5:销毁链表  

 三:链表的核心功能

3-1:尾插

3-2:尾删

3-3:链表查找

3-4:在pos结点前插入数据

3-5:头插

3-6:删除pos位置结点

3-7:头删

四:源码 


一:链表的分类

链表的分类分为以下几种:

 

在实际中链表的结构非常多样,以上情况组合起来就有8种链表结构。我们在前面已经讲过最简单的结构:单向无头非循环链表。并且在我们所刷的OJ题里也涉及到了有无头结点情况,今天我们讲解最复杂结构:双向带头循环链表。在我们讲解之前我们先了解一下这两种结构在链表界的重要性。

1:无头单向非循环链表:

结构简单,一般不会单独用来存数据。实际中更多是作为其他数据结构的子结构,如哈希桶、图的邻接表等等。另外这种结构在笔试面试中出现很多。

2:带头双向循环链表:

结构最复杂,一般用在单独存储数据。实际中使用的链表数据结构,都是带头双向循环链表。另外这个结构虽然结构复杂,但是使用代码实现以后会发现结构会带来很多优势,实现反而简单了。

                                 正文开始

二:链表的实现

2-1:创建链表

思路:

因为链表为双向链表,所以在我们创建的结构体中需要创建两个结构体指针prev和next,其中prev指向上一个结点,next指向下一个结点。

Lish.h文件 

  1. typedef int LTDataType; //重定义方便数据类型的转换,这里以int为主
  2. typedef struct ListNode
  3. {
  4. LTDataType data; //存储数据
  5. struct ListNode* next; //存储下一个结点的地址
  6. struct ListNode* prev; //存储上一个结点的地址
  7. }LTNode;

 2-2:创建新的结点

Lish.h文件 

  1. //创建一个结点
  2. LTNode* BuyLTNode(LTDataType x);

List.c文件 

  1. //创建一个结点
  2. LTNode* BuyLTNode(LTDataType x)
  3. {
  4. LTNode* newnode = (LTNode*)malloc(sizeof(LTNode));
  5. if (newnode == NULL) //检查内存是否开辟成功
  6. {
  7. printf("malloc fail\n");
  8. exit(-1);
  9. }
  10. newnode->data = x;
  11. newnode->next = NULL;
  12. newnode->prev = NULL;
  13. return newnode;
  14. }

 2-3:初始化链表 

思路1:

我们所创建的链表为带头链表,所以我们在初始化链表的时候就需要把哨兵位头结点创建好,哨兵位头结点不存储数据,但却有着至关重要的作用,当链表为空链表时哨兵位头结点仍存在。同时形参的改变并不会影响实参,所以我们在传参的时候需要传二级指针,因为保存哨兵位头结点地址的地址不可能为空,所以我们需要用assert进行断言,同时因为是双向链表,所以哨兵位结点的prev和next都指向自己。

⭐:对于不可能出现空指针的情况,我们需要断言。

Lish.h文件 

  1. //初始化链表(二级指针)
  2. void ListInit(LTNode** pphead);

List.c文件 

  1. //初始化链表(二级指针)
  2. void ListInit(LTNode** pphead)
  3. {
  4. assert(pphead); //pphead不可能为空指针
  5. *pphead = BuyLTNode(0);//创建一个结点给哨兵位头结点
  6. //哨兵位头结点初始化next和prev不能为空,需都指向自己
  7. (*pphead)->next = *pphead;//注意优先级问题,需要加括号。
  8. (*pphead)->prev = *pphead;
  9. }

思路2:

如果我们想传一级指针也可以,只不过函数的返回值为结构体指针。

Lish.h文件 

  1. //初始化链表(一级指针)
  2. LTNode* ListInit();

List.c文件 

  1. //初始化链表(一级指针)
  2. LTNode* ListInit()
  3. {
  4. LTNode*phead = BuyLTNode(0);
  5. phead->prev = phead;
  6. phead->next = phead;
  7. return phead;
  8. }

 2-4:打印链表  

思路:

首先需要明确的是哨兵位结点不存储数据,所以我们要打印链表数据就需要创建一个指针变量cur从phead->next开始依次遍历打印链表,因为链表是循环的,所以当cur回到phead时停止。

Lish.h文件 

  1. //打印数据
  2. void ListPrint(LTNode* phead);

List.c文件 

  1. //打印数据
  2. void ListPrint(LTNode* phead)
  3. {
  4. assert(phead);
  5. LTNode* cur = phead->next;//cur从phead->next开始
  6. while (cur != phead)//cur回到phead时停止
  7. {
  8. printf("%d ", cur->data);
  9. cur = cur->next;
  10. }
  11. printf("\n");
  12. }

  2-5:销毁链表  

思路:

销毁链表我们可以创建指针变量cur遍历链表,先把有效数据的结点free掉,最后再把哨兵位结点free掉即可。

Lish.h文件 

  1. //销毁链表
  2. void ListDestory(LTNode* phead);

List.c文件 

  1. //销毁链表
  2. void ListDestory(LTNode* phead)
  3. {
  4. assert(phead);
  5. LTNode* cur = phead->next;
  6. while (cur != phead)//从第一个结点开始依次销毁
  7. {
  8. LTNode* next = cur->next;
  9. free(cur);
  10. cur = next;
  11. }
  12. //销毁哨兵结点
  13. free(phead);
  14. phead = NULL;
  15. }

看到这里是不是觉得双链表也就那样,并没有想象中的那么难,前面已经理解的话我们继续往下走,不理解的话多看几遍多敲敲代码,说不定过一会就理解了~~

 三:链表的核心功能

3-1:尾插

思路:

尾插就体现了双向链表的结构优势,因为哨兵位头节点的phead的prev指向的就是链表尾结点的地址,所以我们找到了尾结点后就需要再创建一个结点存储插入数据。

 Lish.h文件 

  1. //尾插一个结点
  2. void ListPushBack(LTNode* phead, LTDataType x);

List.c文件 

  1. //尾插一个结点
  2. void ListPushBack(LTNode* phead, LTDataType x)
  3. {
  4. assert(phead);
  5. LTNode* tail = phead->prev;//保存尾结点地址
  6. LTNode* newnode = BuyLTNode(x);//创建一个新的结点
  7. //循环链表
  8. tail->next = newnode;
  9. newnode->prev = tail;
  10. newnode->next = phead;
  11. phead->prev = newnode;
  12. }

Test.c文件

  1. void TestList1()
  2. {
  3. LTNode* pList = NULL;
  4. ListInit(&pList);
  5. ListPushBack(pList, 1);
  6. ListPushBack(pList, 2);
  7. ListPushBack(pList, 3);
  8. ListPushBack(pList, 4);
  9. ListPrint(pList);
  10. }

3-2:尾删

思路:

当我们谈到尾删时,双向链表的结构优势再次体现出来。对于传统的单向链表如果想要实现尾删就必须遍历链表,找到尾结点将其free掉,遍历链表时间复杂度为O(N)。而对于双向链表来说因为链表是循环的,所以链表尾结点的地址时刻存在哨兵位结点的prev里面,时间复杂度为O(1),我们可以创建指针变量tail保存尾结点地址。同时删除尾结点的同时我们也要保证尾结点的上一个结点地址被保存,所以我们创建指针变量tailPrev指向tail的prev,然后把tailPrev的next指向哨兵位结点phead,把哨兵位phead的prev置成tailPrev。

 Lish.h文件 

  1. //尾删一个结点
  2. void ListPopBack(LTNode* phead);

List.c文件 

  1. //尾删一个结点
  2. void ListPopBack(LTNode* phead)
  3. {
  4. assert(phead);//哨兵位不能为空
  5. assert(phead->next != phead);//链表不能为空,防止删除哨兵位结点
  6. LTNode* tail = phead->prev;//尾结点放入tail
  7. LTNode* tailPrev = tail->prev;//新的尾结点tailPrev
  8. free(tail);
  9. tail = NULL;
  10. //循环链表
  11. tailPrev->next = phead;
  12. phead->prev = tailPrev;
  13. }

Test.c文件

  1. void TestList2()
  2. {
  3. LTNode* pList = NULL;
  4. ListInit(&pList);
  5. ListPushBack(pList, 1);
  6. ListPushBack(pList, 2);
  7. ListPushBack(pList, 3);
  8. ListPushBack(pList, 4);
  9. ListPrint(pList);
  10. ListPopBack(pList);
  11. ListPopBack(pList);
  12. ListPopBack(pList);
  13. ListPrint(pList);
  14. }

 3-3:链表查找

思路:

创建一个指针变量cur指向哨兵位phead的next,然后开始遍历链表,判断cur->data是否为查找的数据,如果是就返回cur,不是继续遍历(cur=->cur->next),终止条件是cur指向哨兵位结点。

 Lish.h文件 

  1. //链表查找
  2. LTNode* ListFind(LTNode* phead, LTDataType x);

List.c文件 

  1. //链表查找
  2. LTNode* ListFind(LTNode* phead, LTDataType x)
  3. {
  4. assert(phead);
  5. LTNode* cur = phead->next;
  6. while (cur != phead)
  7. {
  8. if (cur->data == x)
  9. {
  10. return cur;
  11. }
  12. cur = cur->next;
  13. }
  14. return NULL;
  15. }

 3-4:在pos结点前插入数据

思路:

用上一个查找数据函数查找pos,然后在pos之前插入数据:创建一个新的结点newnode,pos上一个结点的next指向新的结点newnode,同时把newnode的prev指向pos上一个结点,newnode的next指向pos,pos的prev指向newnode。

Lish.h文件 

  1. //在pos前插入数据
  2. void ListInsert(LTNode* pos, LTDataType x);

List.c文件 

  1. //在pos前插入数据
  2. void ListInsert(LTNode* pos, LTDataType x)
  3. {
  4. assert(pos);
  5. //创建插入结点
  6. LTNode* newnode = BuyLTNode(x);
  7. //存储pos上一个结点地址
  8. LTNode* posPrev = pos->prev;
  9. //循环链表
  10. newnode->next = pos;
  11. pos->prev = newnode;
  12. posPrev->next = newnode;
  13. newnode->prev = posPrev;
  14. }

Test.c文件

  1. void TestList3()
  2. {
  3. LTNode* pList = NULL;
  4. ListInit(&pList);
  5. ListPushBack(pList, 1);
  6. ListPushBack(pList, 2);
  7. ListPushBack(pList, 3);
  8. ListPushBack(pList, 4);
  9. ListPrint(pList);
  10. LTNode* pos = ListFind(pList, 3);
  11. if (pos)//判断链表中是否有要查找的元素
  12. {
  13. ListInsert(pos, 30);//在数字3前插入30
  14. }
  15. ListPrint(pList);
  16. }

⭐:有了这个函数那么尾插也就可以更改一下,直接调用这个函数。

  1. //尾插一个结点
  2. void ListPushBack(LTNode* phead, LTDataType x)
  3. {
  4. assert(phead);
  5. ListInsert(phead, x);
  6. }

 3-5:头插

思路:

同样的,头插我们也可以引用ListInsert函数,当pos=phead->next时,我们实现的就是头插。

Lish.h文件 

  1. //头插
  2. void ListPushFront(LTNode* phead, LTDataType x);

List.c文件 

  1. //头插
  2. void ListPushFront(LTNode* phead, LTDataType x)
  3. {
  4. assert(phead);
  5. ListInsert(phead->next, x);
  6. }

Test.c文件

  1. void TestList4()
  2. {
  3. LTNode* pList = NULL;
  4. ListInit(&pList);
  5. ListPushBack(pList, 1);
  6. ListPushBack(pList, 2);
  7. ListPushBack(pList, 3);
  8. ListPushBack(pList, 4);
  9. ListPrint(pList);
  10. //头插10和20
  11. ListPushFront(pList, 10);
  12. ListPushFront(pList, 20);
  13. ListPrint(pList);
  14. }

 3-6:删除pos位置结点

思路:

创建两个指针变量prev和next分别保存pos上一个结点和下一个结点的地址,然后将pos结点free掉,连接prev和next。

Lish.h文件 

  1. //删除pos处结点
  2. void ListErase(LTNode* pos);

List.c文件 

  1. //删除pos处结点
  2. void ListErase(LTNode* pos)
  3. {
  4. assert(pos);
  5. //保存pos前一个结点
  6. LTNode* prev = pos->prev;
  7. //保存pos下一个结点
  8. LTNode* next = pos->next;
  9. free(pos);
  10. pos = NULL;
  11. //连接链表
  12. prev->next = next;
  13. next->prev->prev;
  14. }

Test.c文件

  1. void TestList5()
  2. {
  3. LTNode* pList = NULL;
  4. ListInit(&pList);
  5. ListPushBack(pList, 1);
  6. ListPushBack(pList, 2);
  7. ListPushBack(pList, 3);
  8. ListPushBack(pList, 4);
  9. ListPrint(pList);
  10. LTNode* pos = ListFind(pList, 3);
  11. if (pos)//判断链表中是否有要查找的元素
  12. {
  13. ListErase(pos);//删除pos位结点
  14. pos=NULL//防止野指针
  15. }
  16. ListPrint(pList);
  17. }

⭐:当我们有了ListErase函数后,直接调用此函数就能实现尾删。

  1. void ListPopBack(LTNode* phead)
  2. {
  3. assert(phead);
  4. assert(phead->next != phead);
  5. ListErase(phead->prev);
  6. }

 3-7:头删

思路:

直接调用ListErase函数,删除head->next位置结点。

Lish.h文件 

  1. //头删
  2. void ListPopFront(LTNode* phead);

List.c文件 

  1. //头删
  2. void ListPopFront(LTNode* phead)
  3. {
  4. assert(phead);
  5. assert(phead->next != phead);
  6. ListErase(phead->next);
  7. }

Test.c文件

  1. void TestList6()
  2. {
  3. LTNode* pList = NULL;
  4. ListInit(&pList);
  5. ListPushBack(pList, 1);
  6. ListPushBack(pList, 2);
  7. ListPushBack(pList, 3);
  8. ListPushBack(pList, 4);
  9. ListPushBack(pList, 5);
  10. ListPushBack(pList, 6);
  11. ListPrint(pList);
  12. //头插三个元素
  13. ListPushFront(pList, 0);
  14. ListPushFront(pList, -1);
  15. ListPushFront(pList, -2);
  16. ListPrint(pList);
  17. //尾删三个元素
  18. ListPopBack(pList);
  19. ListPopBack(pList);
  20. ListPopBack(pList);
  21. ListPrint(pList);
  22. //头删三个元素
  23. ListPopFront(pList);
  24. ListPopFront(pList);
  25. ListPopFront(pList);
  26. ListPrint(pList);
  27. }

接口终于都实现完了~

 

四:源码 

List.h文件

  1. #pragma once
  2. #include <stdio.h>
  3. #include <assert.h>
  4. #include <stdlib.h>
  5. typedef int LTDataType; //重定义方便数据类型的转换,这里以int为主
  6. typedef struct ListNode
  7. {
  8. LTDataType data; //存储数据
  9. struct ListNode* next; //存储下一个结点的地址
  10. struct ListNode* prev; //存储上一个结点的地址
  11. }LTNode;
  12. //初始化链表(二级指针)
  13. void ListInit(LTNode** pphead);
  14. //初始化链表(一级指针)
  15. //LTNode* ListInit();
  16. //销毁链表
  17. void ListDestory(LTNode* phead);
  18. //打印数据
  19. void ListPrint(LTNode* phead);
  20. //创建一个结点
  21. LTNode* BuyLTNode(LTDataType x);
  22. //尾插一个结点
  23. void ListPushBack(LTNode* phead, LTDataType x);
  24. //尾删一个结点
  25. void ListPopBack(LTNode* phead);
  26. //头插
  27. void ListPushFront(LTNode* phead, LTDataType x);
  28. //头删
  29. void ListPopFront(LTNode* phead);
  30. //链表查找
  31. LTNode* ListFind(LTNode* phead, LTDataType x);
  32. //在pos前插入数据
  33. void ListInsert(LTNode* pos, LTDataType x);
  34. //删除pos处结点
  35. void ListErase(LTNode* pos);

List.c文件

  1. #include "List.h"
  2. //初始化链表(二级指针)
  3. void ListInit(LTNode** pphead)
  4. {
  5. assert(pphead);
  6. *pphead = BuyLTNode(0);//创建一个结点给哨兵位头结点
  7. //哨兵位头结点初始化next和prev不能为空,需都指向自己
  8. (*pphead)->next = *pphead;//注意优先级问题,需要加括号。
  9. (*pphead)->prev = *pphead;
  10. }
  11. 初始化链表(一级指针)
  12. //LTNode* ListInit()
  13. //{
  14. // LTNode*phead = BuyLTNode(0);
  15. // phead->prev = phead;
  16. // phead->next = phead;
  17. // return phead;
  18. //}
  19. //销毁链表
  20. void ListDestory(LTNode* phead)
  21. {
  22. assert(phead);
  23. LTNode* cur = phead->next;
  24. while (cur != phead)//从第一个结点开始依次销毁
  25. {
  26. LTNode* next = cur->next;
  27. free(cur);
  28. cur = next;
  29. }
  30. //销毁哨兵结点
  31. free(phead);
  32. phead = NULL;
  33. }
  34. //打印数据
  35. void ListPrint(LTNode* phead)
  36. {
  37. assert(phead);
  38. LTNode* cur = phead->next;//cur从phead->next开始
  39. while (cur != phead)//cur回到phead时停止
  40. {
  41. printf("%d ", cur->data);
  42. cur = cur->next;
  43. }
  44. printf("\n");
  45. }
  46. //创建一个结点
  47. LTNode* BuyLTNode(LTDataType x)
  48. {
  49. LTNode* newnode = (LTNode*)malloc(sizeof(LTNode));
  50. if (newnode == NULL)
  51. {
  52. printf("malloc fail\n");
  53. exit(-1);
  54. }
  55. newnode->data = x;
  56. newnode->next = NULL;
  57. newnode->prev = NULL;
  58. return newnode;
  59. }
  60. //尾插
  61. void ListPushBack(LTNode* phead, LTDataType x)
  62. {
  63. assert(phead);
  64. LTNode* tail = phead->prev;//保存尾结点地址
  65. LTNode* newnode = BuyLTNode(x);//创建一个新的结点
  66. //循环链表
  67. tail->next = newnode;
  68. newnode->prev = tail;
  69. newnode->next = phead;
  70. phead->prev = newnode;
  71. //法二
  72. /*assert(phead);
  73. ListInsert(phead, x);*/
  74. }
  75. //尾删
  76. void ListPopBack(LTNode* phead)
  77. {
  78. assert(phead);//哨兵位不能为空
  79. assert(phead->next != phead);//链表不能为空,防止删除哨兵位结点
  80. LTNode* tail = phead->prev;//尾结点放入tail
  81. LTNode* tailPrev = tail->prev;//新的尾结点tailPrev
  82. free(tail);
  83. tail = NULL;
  84. //循环链表
  85. tailPrev->next = phead;
  86. phead->prev = tailPrev;
  87. /*assert(phead);
  88. assert(phead->next != phead);
  89. ListErase(phead->prev);*/
  90. }
  91. //链表查找
  92. LTNode* ListFind(LTNode* phead, LTDataType x)
  93. {
  94. assert(phead);
  95. LTNode* cur = phead->next;
  96. while (cur != phead)
  97. {
  98. if (cur->data == x)
  99. {
  100. return cur;
  101. }
  102. cur = cur->next;
  103. }
  104. return NULL;
  105. }
  106. //在pos前插入数据
  107. void ListInsert(LTNode* pos, LTDataType x)
  108. {
  109. assert(pos);
  110. //创建插入结点
  111. LTNode* newnode = BuyLTNode(x);
  112. //存储pos上一个结点地址
  113. LTNode* posPrev = pos->prev;
  114. //循环链表
  115. newnode->next = pos;
  116. pos->prev = newnode;
  117. posPrev->next = newnode;
  118. newnode->prev = posPrev;
  119. }
  120. //头插
  121. void ListPushFront(LTNode* phead, LTDataType x)
  122. {
  123. assert(phead);
  124. ListInsert(phead->next, x);
  125. }
  126. //删除pos处结点
  127. void ListErase(LTNode* pos)
  128. {
  129. assert(pos);
  130. //保存pos前一个结点
  131. LTNode* prev = pos->prev;
  132. //保存pos下一个结点
  133. LTNode* next = pos->next;
  134. free(pos);
  135. pos = NULL;
  136. //连接链表
  137. prev->next = next;
  138. next->prev=prev;
  139. }
  140. //头删
  141. void ListPopFront(LTNode* phead)
  142. {
  143. assert(phead);
  144. assert(phead->next != phead);
  145. ListErase(phead->next);
  146. }

Test.c文件

  1. #include "List.h"
  2. void TestList1()
  3. {
  4. LTNode* pList = NULL;
  5. ListInit(&pList);
  6. ListPushBack(pList, 1);
  7. ListPushBack(pList, 2);
  8. ListPushBack(pList, 3);
  9. ListPushBack(pList, 4);
  10. ListPrint(pList);
  11. }
  12. void TestList2()
  13. {
  14. LTNode* pList = NULL;
  15. ListInit(&pList);
  16. ListPushBack(pList, 1);
  17. ListPushBack(pList, 2);
  18. ListPushBack(pList, 3);
  19. ListPushBack(pList, 4);
  20. ListPrint(pList);
  21. ListPopBack(pList);
  22. ListPopBack(pList);
  23. ListPopBack(pList);
  24. ListPrint(pList);
  25. }
  26. void TestList3()
  27. {
  28. LTNode* pList = NULL;
  29. ListInit(&pList);
  30. ListPushBack(pList, 1);
  31. ListPushBack(pList, 2);
  32. ListPushBack(pList, 3);
  33. ListPushBack(pList, 4);
  34. ListPrint(pList);
  35. LTNode* pos = ListFind(pList, 3);
  36. if (pos)//判断链表中是否有要查找的元素
  37. {
  38. ListInsert(pos, 30);//在数字3前插入30
  39. }
  40. ListPrint(pList);
  41. }
  42. void TestList4()
  43. {
  44. LTNode* pList = NULL;
  45. ListInit(&pList);
  46. ListPushBack(pList, 1);
  47. ListPushBack(pList, 2);
  48. ListPushBack(pList, 3);
  49. ListPushBack(pList, 4);
  50. ListPrint(pList);
  51. //头插10和20
  52. ListPushFront(pList, 10);
  53. ListPushFront(pList, 20);
  54. ListPrint(pList);
  55. }
  56. void TestList5()
  57. {
  58. LTNode* pList = NULL;
  59. ListInit(&pList);
  60. ListPushBack(pList, 1);
  61. ListPushBack(pList, 2);
  62. ListPushBack(pList, 3);
  63. ListPushBack(pList, 4);
  64. ListPrint(pList);
  65. LTNode* pos = ListFind(pList, 3);
  66. if (pos)//判断链表中是否有要查找的元素
  67. {
  68. ListErase(pos);//删除pos位结点
  69. pos = NULL;
  70. }
  71. ListPrint(pList);
  72. }
  73. void TestList6()
  74. {
  75. LTNode* pList = NULL;
  76. ListInit(&pList);
  77. ListPushBack(pList, 1);
  78. ListPushBack(pList, 2);
  79. ListPushBack(pList, 3);
  80. ListPushBack(pList, 4);
  81. ListPushBack(pList, 5);
  82. ListPushBack(pList, 6);
  83. ListPrint(pList);
  84. //头插三个元素
  85. ListPushFront(pList, 0);
  86. ListPushFront(pList, -1);
  87. ListPushFront(pList, -2);
  88. ListPrint(pList);
  89. //尾删三个元素
  90. ListPopBack(pList);
  91. ListPopBack(pList);
  92. ListPopBack(pList);
  93. ListPrint(pList);
  94. //头删三个元素
  95. ListPopFront(pList);
  96. ListPopFront(pList);
  97. ListPopFront(pList);
  98. ListPrint(pList);
  99. }
  100. int main()
  101. {
  102. /*TestList1();*/
  103. /*TestList2();*/
  104. /*TestList3();*/
  105. /*TestList4();*/
  106. /*TestList5();*/
  107. TestList6();
  108. return 0;
  109. }

看完觉得有收获的要记得点赞噢~ 

 

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

闽ICP备14008679号