当前位置:   article > 正文

【数据结构】————单链表的定义及基本操作

【数据结构】————单链表的定义及基本操作

目录

一、链表介绍

1.链表的概念

二、单链表的基本操作

1.定义结点结构体

2.单链表的函数接口

3.单链表的功能实现

① 创建新结点

② 显示单链表

③ 单链表尾插

④ 单链表头插

⑤ 单链表尾删

⑥ 单链表头删

⑦ 查找x结点地址

⑧ pos位置前插入x

⑨ pos位置后插入x

⑩ 删除pos位置结点

⑪ 删除pos位置后结点

⑫ 单链表销毁

三、代码汇总

3.1 SList.h

3.2 SList.c

3.3 main.c


一、链表介绍

1.链表的概念

概念:链表是一种物理存储结构非连续、非顺序的存储结构,但链表在逻辑上连续的,顺序的,而数据元素的逻辑顺序是通过链表中的指针连接次序实现的。

看起来很麻烦,其实就是一个个的结点连起来的结构。如下图:

每一个结点的第一个data用来存放有效数据,第二个next用来存放下一个结点的地址

注意:最后一个结点的next存放的是NULL

链表只是在逻辑结构上是连续的,一个结点指向下一个结点,但是在物理存储结构上是不连续的。上图是为了方便大家理解,才用线条连接了结点。

二、单链表的基本操作

1.定义结点结构体
  • 单链表的有效数据不一定都是int整型的,为了后期方便修改,我们直接对int进行重定义SListDataType。因为单链表的英文可以缩写成SList
  • 再来创建结点结构体,结构体成员变量a用来存储有效数据;next用来存放下一个结构体的地址,所用指针变量,类型一定是struct SListNode*哦!!!
  1. typedef int SListDataType;//对int进行重定义
  2. typedef struct SListNode //创建结点结构体
  3. {
  4. SListDataType a;
  5. struct SListNode* next;
  6. }SListNode;
2.单链表的函数接口

学习数据结构主要就是对数据进行增删查改,在写出来一个链表后也要写一些函数接口方便对单链表的数据进行管理。写出下面的函数,用来创建和管理单链表。

  1. //新建一个结点
  2. SListNode* BuySListNode(SListDataType x);
  3. //显示单链表
  4. void SLPrint(SListNode* phead);
  5. //尾插
  6. void SLPushBack(SListNode** pphead, SListDataType x);
  7. //头插
  8. void SLPushFront(SListNode** pphead, SListDataType x);
  9. //尾删
  10. void SLPopBack(SListNode** pphead);
  11. //头删
  12. void SLPopFront(SListNode** pphead);
  13. //查找x结点地址
  14. SListNode* SLFind(SListNode* phead, SListDataType x);
  15. //在pos地址之前插入x
  16. void SLInsert(SListNode** pphead, SListNode* pos, SListDataType x);
  17. //在pos地址后边插入x
  18. void SLInsertAfter(SListNode* pos, SListDataType x);
  19. //删除pos地址结点
  20. void SLErase(SListNode** pphead, SListNode* pos);
  21. //删除pos地址之后的结点
  22. void SLEraseAfter(SListNode* pos);
  23. //销毁单链表
  24. void SLDestroy(SListNode** pphead);

3.单链表的功能实现
① 创建新结点

利用malloc函数开辟一个结点,有效数据a存放x,指针next先存放NULL,最后返回新建结点的地址newnode。如果新结点为空即newnode==NULL会执行打印错误信息,退出程序。

  1. //开辟一个结点
  2. SListNode* BuySListNode(SListDataType x)
  3. {
  4. SListNode* newnode = (SListNode*)malloc(sizeof(SListNode));
  5. if (newnode == NULL)
  6. {
  7. perror("BuySListNode->malloc failed");
  8. exit(-1);
  9. }
  10. newnode->next = NULL;
  11. newnode->a = x;
  12. return newnode;
  13. }
② 显示单链表

把单链表中的每一个有效值打印在屏幕上。

  1. //显示单链表
  2. void SLPrint(SListNode* phead)
  3. {
  4. SListNode* cur = phead;
  5. while (cur != NULL)
  6. {
  7. printf("%d->", cur->a);
  8. cur = cur->next;
  9. }
  10. printf("NULL\n");
  11. }
③ 单链表尾插
  • phead是一级指针存放的是结点结构体的地址,当链表为空的时候,phead就是为NULL,而二级指针pphead存放的是指针变量phead的地址,phead的地址是永远存在的,所以pphead就一定不可能为空,所以需要断言pphead。
  • 调用BuySListNode函数传入参数x,返回新结点的地址存放到newnode变量中
  • 当进行尾插的时候有两种情况:
    1. 当单链表为空的时候,直接把新结点的地址存放到phead中,即**pphead==newnode
    2. 当单链表为非空的时候,创建tail指针找到该单链表的最后一个结点(标志是:tail->next==NULL),把tail的next指针指向newnode即:tail->next=newnode;
  1. //尾插
  2. void SLPushBack(SListNode** pphead, SListDataType x)
  3. {
  4. assert(pphead);
  5. SListNode* newnode = BuySListNode(x);
  6. if (*pphead == NULL)
  7. {
  8. *pphead = newnode;
  9. }
  10. else
  11. {
  12. SListNode* tail = *pphead;
  13. while (tail->next != NULL)
  14. {
  15. tail = tail->next;
  16. }
  17. tail->next = newnode;
  18. }
  19. }

④ 单链表头插

单链表的头插相对比较简单,在创建一个新结点后,只需要把新结点的next指针指向该单链表的头指针,然后再把单链表的头指针更新一下就OK了。

  1. //头插
  2. void SLPushFront(SListNode** pphead, SListDataType x)
  3. {
  4. assert(pphead);
  5. SListNode* newnode = BuySListNode(x);
  6. newnode->next = *pphead;
  7. *pphead = newnode;
  8. }
⑤ 单链表尾删
  • 第一个断言:传过来的是存放单链表的头结点指针的地址,所以一定不能为空。
  • 第二个断言:是单链表不能可空,单链表里面必须有元素。
  • 创建两个临时指针变量,tail找到尾结点、prev用来存放tail前一个结点的地址。找到后有两种结果:
    1. 该单链表就一个结点(利用prev是否为空就可以判断):直接free掉*pphead然后再把*pphead置空
    2. 该单链表有两个及以上个结点:这就要把tail释放掉以后,再把tail前一个结点的next置为空
  1. //尾删
  2. void SLPopBack(SListNode** pphead)
  3. {
  4. assert(pphead);
  5. assert(*pphead);
  6. SListNode* tail = *pphead;
  7. SListNode* prev = NULL;
  8. while (tail->next != NULL)
  9. {
  10. prev = tail;
  11. tail = tail->next;
  12. }
  13. if (prev != NULL)
  14. {
  15. free(tail);
  16. prev->next = NULL;
  17. }
  18. else
  19. {
  20. free(tail);
  21. *pphead = NULL;
  22. }
  23. }
⑥ 单链表头删

单链表的头删也是比较简单的,创建一个临时指针变量用来存放头结点下一个结点的地址,然后在把头结点释放点,再把临时变量的值,,赋给*pphead

  1. //头删
  2. void SLPopFront(SListNode** pphead)
  3. {
  4. assert(pphead);
  5. assert(*pphead);
  6. SListNode* tmp = (*pphead)->next;
  7. free(*pphead);
  8. *pphead = tmp;
  9. }
⑦ 查找x结点地址

遍历整个链表,同时判断结点中的值是否为x,如果相等返回该结点地址,否则返回NULL

  1. //查找x结点地址
  2. SListNode* SLFind(SListNode* phead, SListDataType x)
  3. {
  4. assert(phead);
  5. SListNode* cur = phead;
  6. while (cur != NULL)
  7. {
  8. if (cur->a == x)
  9. {
  10. return cur;
  11. }
  12. cur = cur->next;
  13. }
  14. return NULL;
  15. }
⑧ pos位置前插入x

断言pos和pphead不为空,然后再插入x,也得分两种情况:

  1. pos和*pphead的值相等,就是两个指针都指向头结点,那么直接利用单链表头插
  2. pos和*pphead的值不相等,就得先找pos前面的结点prev,找到以后,创建新结点newnode,然后把newnode的值赋给prev的next指针,再把pos的值赋给newnode的next
  1. //在pos位置之前插入x
  2. void SLInsert(SListNode** pphead, SListNode* pos, SListDataType x)
  3. {
  4. assert(pos != NULL);
  5. assert(pphead);
  6. if (pos == *pphead)
  7. {
  8. SLPushFront(pphead, x);
  9. }
  10. else
  11. {
  12. SListNode* prev = *pphead;
  13. while (prev->next != pos)
  14. {
  15. prev = prev->next;
  16. }
  17. SListNode* newnode = BuySListNode(x);
  18. newnode->next = pos;
  19. prev->next = newnode;
  20. }
  21. }
⑨ pos位置后插入x

这个相较于前插就比较简单,首先断言pos不能为空,然后创建一个有效数值为x的新结点newnode,然后把pos位置的下一个结点的地址放到新结点newnode的next里去,然后再把newnode的地址存放到pos的next指针中。

  1. //在pos位置后边插入x
  2. void SLInsertAfter(SListNode* pos, SListDataType x)
  3. {
  4. assert(pos);
  5. SListNode* newnode = BuySListNode(x);
  6. newnode->next = pos->next;
  7. pos->next = newnode;
  8. }
删除pos位置结点

三个断言不用说了

  • 该单链表有两个及以上结点:要删除pos的结点,就要先找到pos前面的结点prev,然后把pos后面结点的地址存放到prev的next指针里去,在释放掉pos
  • 该单链表就一个结点:跟头删的逻辑一样哦
  1. //删除pos地址结点
  2. void SLErase(SListNode** pphead, SListNode* pos)
  3. {
  4. assert(pphead);
  5. assert(*pphead);
  6. assert(pos);
  7. SListNode* cur = *pphead;
  8. if (cur == pos)
  9. {
  10. SListNode* newHead = (*pphead)->next;
  11. free(*pphead);
  12. *pphead = newHead;
  13. }
  14. else
  15. {
  16. while (cur->next != pos)
  17. {
  18. cur = cur->next;
  19. }
  20. cur->next = pos->next;
  21. free(pos);
  22. }
  23. }
⑪ 删除pos位置后结点

删除pos位置后的结点,先创建临时指针变量用来存放pos位置后的结点的地址,然后再把临时指针变量赋给pos结点的next

  1. //删除pos地址之后的结点
  2. void SLEraseAfter(SListNode* pos)
  3. {
  4. assert(pos != NULL);
  5. assert(pos->next != NULL);
  6. SListNode* posNext = pos->next;
  7. pos->next = posNext->next;
  8. free(posNext);
  9. }
⑫ 单链表销毁

如果单链表本身就为空直接返回,如果不为空就创建两个指针变量用来存放当前结点cur和当前结点的下一个结点curNext,然后释放当前结点cur,再把下一个结点地址curNext赋值给当前结点cur

  1. //销毁单链表
  2. void SLDestroy(SListNode** pphead)
  3. {
  4. assert(pphead);
  5. if (*pphead)
  6. return;
  7. SListNode* cur = *pphead;
  8. SListNode* curNext = NULL;
  9. while (cur != NULL)
  10. {
  11. curNext = cur->next;
  12. free(cur);
  13. cur = curNext;
  14. }
  15. }

三、代码汇总

3.1 SList.h

包含头文件、函数声明、结构体定义

  1. #pragma once
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4. #include<assert.h>
  5. typedef int SListDataType;
  6. typedef struct SListNode
  7. {
  8. SListDataType a;
  9. struct SListNode* next;
  10. }SListNode;
  11. //新建一个结点
  12. SListNode* BuySListNode(SListDataType x);
  13. //显示单链表
  14. void SLPrint(SListNode* phead);
  15. //尾插
  16. void SLPushBack(SListNode** pphead, SListDataType x);
  17. //头插
  18. void SLPushFront(SListNode** pphead, SListDataType x);
  19. //尾删
  20. void SLPopBack(SListNode** pphead);
  21. //头删
  22. void SLPopFront(SListNode** pphead);
  23. //查找x结点地址
  24. SListNode* SLFind(SListNode* phead, SListDataType x);
  25. //在pos地址之前插入x
  26. void SLInsert(SListNode** pphead, SListNode* pos, SListDataType x);
  27. //在pos地址后边插入x
  28. void SLInsertAfter(SListNode* pos, SListDataType x);
  29. //删除pos地址结点
  30. void SLErase(SListNode** pphead, SListNode* pos);
  31. //删除pos地址之后的结点
  32. void SLEraseAfter(SListNode* pos);
  33. //销毁单链表
  34. void SLDestroy(SListNode** pphead);
3.2 SList.c

对单链表相关函数的实现

  1. #include"SList.h"
  2. //开辟一个节点
  3. SListNode* BuySListNode(SListDataType x)
  4. {
  5. SListNode* newnode = (SListNode*)malloc(sizeof(SListNode));
  6. if (newnode == NULL)
  7. {
  8. perror("BuySListNode->malloc failed");
  9. exit(-1);
  10. }
  11. newnode->next = NULL;
  12. newnode->a = x;
  13. return newnode;
  14. }
  15. //显示单链表
  16. void SLPrint(SListNode* phead)
  17. {
  18. SListNode* cur = phead;
  19. while (cur != NULL)
  20. {
  21. printf("%d->", cur->a);
  22. cur = cur->next;
  23. }
  24. printf("NULL\n");
  25. }
  26. //尾插
  27. void SLPushBack(SListNode** pphead, SListDataType x)
  28. {
  29. assert(pphead);
  30. SListNode* newnode = BuySListNode(x);
  31. if (*pphead == NULL)
  32. {
  33. *pphead = newnode;
  34. }
  35. else
  36. {
  37. SListNode* tail = *pphead;
  38. while (tail->next != NULL)
  39. {
  40. tail = tail->next;
  41. }
  42. tail->next = newnode;
  43. }
  44. }
  45. //头插
  46. void SLPushFront(SListNode** pphead, SListDataType x)
  47. {
  48. assert(pphead);
  49. SListNode* newnode = BuySListNode(x);
  50. newnode->next = *pphead;
  51. *pphead = newnode;
  52. }
  53. //尾删
  54. void SLPopBack(SListNode** pphead)
  55. {
  56. assert(pphead);
  57. assert(*pphead);
  58. SListNode* tail = *pphead;
  59. SListNode* prev = NULL;
  60. while (tail->next != NULL)
  61. {
  62. prev = tail;
  63. tail = tail->next;
  64. }
  65. if (prev != NULL)
  66. {
  67. free(tail);
  68. prev->next = NULL;
  69. }
  70. else
  71. {
  72. free(tail);
  73. *pphead = NULL;
  74. }
  75. }
  76. //头删
  77. void SLPopFront(SListNode** pphead)
  78. {
  79. assert(pphead);
  80. assert(*pphead);
  81. SListNode* tmp = (*pphead)->next;
  82. free(*pphead);
  83. *pphead = tmp;
  84. }
  85. //查找节点地址
  86. SListNode* SLFind(SListNode* phead, SListDataType x)
  87. {
  88. assert(phead);
  89. SListNode* cur = phead;
  90. while (cur != NULL)
  91. {
  92. if (cur->a == x)
  93. {
  94. return cur;
  95. }
  96. cur = cur->next;
  97. }
  98. return NULL;
  99. }
  100. //在pos之前插入x
  101. void SLInsert(SListNode** pphead, SListNode* pos, SListDataType x)
  102. {
  103. assert(pos != NULL);
  104. assert(pphead);
  105. if (pos == *pphead)
  106. {
  107. SLPushFront(pphead, x);
  108. }
  109. else
  110. {
  111. SListNode* prev = *pphead;
  112. while (prev->next != pos)
  113. {
  114. prev = prev->next;
  115. }
  116. SListNode* newnode = BuySListNode(x);
  117. newnode->next = pos;
  118. prev->next = newnode;
  119. }
  120. }
  121. //在pos后边插入x
  122. void SLInsertAfter(SListNode* pos, SListDataType x)
  123. {
  124. assert(pos);
  125. SListNode* newnode = BuySListNode(x);
  126. newnode->next = pos->next;
  127. pos->next = newnode;
  128. }
  129. //删除pos位置节点
  130. void SLErase(SListNode** pphead, SListNode* pos)
  131. {
  132. assert(pphead);
  133. assert(*pphead);
  134. assert(pos);
  135. SListNode* cur = *pphead;
  136. if (cur == pos)
  137. {
  138. SListNode* newHead = (*pphead)->next;
  139. free(*pphead);
  140. *pphead = newHead;
  141. }
  142. else
  143. {
  144. while (cur->next != pos)
  145. {
  146. cur = cur->next;
  147. }
  148. cur->next = pos->next;
  149. free(pos);
  150. }
  151. }
  152. //删除pos之后的节点
  153. void SLEraseAfter(SListNode* pos)
  154. {
  155. assert(pos != NULL);
  156. assert(pos->next != NULL);
  157. SListNode* posNext = pos->next;
  158. pos->next = posNext->next;
  159. free(posNext);
  160. }
  161. void SLDestroy(SListNode** pphead)
  162. {
  163. if (*pphead)
  164. return;
  165. SListNode* cur = *pphead;
  166. SListNode* curNext = NULL;
  167. while (cur != NULL)
  168. {
  169. curNext = cur->next;
  170. free(cur);
  171. cur = curNext;
  172. }
  173. }
3.3 main.c

对单链表测试,调整

  1. #include"SList.h"
  2. void test1()
  3. {
  4. SListNode* plist = NULL;
  5. SLPushBack(&plist, 1);
  6. SLPushBack(&plist, 2);
  7. SLPushBack(&plist, 3);
  8. SLPushBack(&plist, 5);
  9. SLPushBack(&plist, 6);
  10. SLPushBack(&plist, 7);
  11. SLPushBack(&plist, 8);
  12. SLPushBack(&plist, 9);
  13. SListNode* ret = SLFind(plist, 1);
  14. SLEraseAfter(ret);
  15. //for (int i = 1; i <= 4; i+=2)
  16. //{
  17. // SLPrint(plist);
  18. //
  19. // //SLErase(&plist, ret);
  20. // //SLInsertAfter(ret, 88);
  21. // //printf("%d = %p\n", i, ret);
  22. //}
  23. SLPrint(plist);
  24. }
  25. int main()
  26. {
  27. test1();
  28. return 0;
  29. }

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号