当前位置:   article > 正文

【数据结构】线性表:链式存储--链表(8种) C语言实现_c语言链式存储

c语言链式存储

前言:请往下翻一翻,链表代码汇总(8种链表的实现代码),代码问题请评论区留言。

目录

链表的性质

性质

分类

头节点:

方向:

循环:

小结:

代码实现

1)单向--不带头--不循环链表

2)单向--不带头--循环链表

3)单向--带头--不循环链表

4)单向--带头--循环链表

5)双向--不带头--不循环链表

6)双向--不带头--循环链表

7)双向--带头--不循环链表

8)双向--带头--循环链表

参考资料:


链表的性质

性质

        线性表的链式存储结构的特点是用一组任意的存储单元存储线性表的数据元素(这组存储单元可以是连续的,也可以是不连续的)。每个数据元素除了存储其本身的信息之外,还存储一个指示其直接后继的信息(基地址指针),所以数据元素有两个域:数据域和指针域。

 注意:这只是普通链表的性质,其他变式链表可基于此基础上改进(就看你设计的算法哪种数据结构支持的更好了),例如双向链表指针域由两部分组成。

分类

头节点:

按链表是否带有头节点:带头链表不带头链表

方向:

按链表访问方向: 单向链表双向链表

循环:

按链表是否构成循环:循环链表不循环链表 

小结:

        链表常规分类一共8种。

  1. 单向--不带头--不循环链表
  2. 单向--不带头--循环链表
  3. 单向--带头--不循环链表
  4. 单向--带头--循环链表
  5. 双向--不带头--不循环链表
  6. 双向--不带头--循环链表
  7. 双向--带头--不循环链表
  8. 双向向--带头--循环链表

        常规操作是初始化、增、删、查、改、长度、清空释放等,具体要根据你的需求来具体设计。下面提供具体实现代码,仅供参考。

代码实现

1)单向--不带头--不循环链表

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. typedef int data_t;
  4. typedef struct node {
  5. data_t data;
  6. struct node* next;
  7. } Node;
  8. // 创建新节点
  9. Node* createNode(data_t data) {
  10. // 分配新节点的内存空间
  11. Node* newNode = (Node*)malloc(sizeof(Node));
  12. if (!newNode) {
  13. printf("Memory allocation failed. The program will exit.\n");
  14. exit(-1);
  15. }
  16. // 设置新节点的数据和指针
  17. newNode->data = data;
  18. newNode->next = NULL;
  19. return newNode;
  20. }
  21. // 初始化链表
  22. Node* initList() {
  23. return NULL;
  24. }
  25. // 头插法
  26. Node* insertAtHead(Node* head, data_t data) {
  27. // 创建新节点
  28. Node* newNode = createNode(data);
  29. // 将新节点插入链表头部
  30. newNode->next = head;
  31. head = newNode;
  32. return head;
  33. }
  34. // 尾插法
  35. Node* insertAtTail(Node* head, data_t data) {
  36. // 创建新节点
  37. Node* newNode = createNode(data);
  38. // 如果链表为空,将新节点作为链表的头节点
  39. if (head == NULL) {
  40. return newNode;
  41. }
  42. // 找到链表的尾部节点,将新节点插入尾部
  43. Node* temp = head;
  44. while (temp->next != NULL) {
  45. temp = temp->next;
  46. }
  47. temp->next = newNode;
  48. return head;
  49. }
  50. // 指定位置插入
  51. Node* insertAtPos(Node* head, data_t data, int pos) {
  52. // 检查插入位置是否合法
  53. if (pos < 0) {
  54. printf("Invalid position.\n");
  55. return head;
  56. }
  57. // 头部插入
  58. if (pos == 0) {
  59. return insertAtHead(head, data);
  60. }
  61. // 创建新节点
  62. Node* newNode = createNode(data);
  63. // 插入位置不为头部,遍历链表找到插入位置
  64. Node* temp = head;
  65. int count = 0;
  66. while (count < pos - 1 && temp != NULL) {
  67. temp = temp->next;
  68. count++;
  69. }
  70. // 插入位置超出链表长度,位置无效
  71. if (temp == NULL) {
  72. printf("Invalid position.\n");
  73. return head;
  74. }
  75. // 插入新节点
  76. newNode->next = temp->next;
  77. temp->next = newNode;
  78. return head;
  79. }
  80. // 头删法
  81. Node* deleteAtHead(Node* head) {
  82. // 检查链表是否为空
  83. if (head == NULL) {
  84. printf("The list is empty.\n");
  85. return head;
  86. }
  87. // 删除头节点
  88. Node* temp = head;
  89. head = head->next;
  90. free(temp);
  91. return head;
  92. }
  93. // 尾删法
  94. Node* deleteAtTail(Node* head) {
  95. // 检查链表是否为空
  96. if (head == NULL) {
  97. printf("The list is empty.\n");
  98. return head;
  99. }
  100. // 链表只有一个节点时,直接删除头节点
  101. if (head->next == NULL) {
  102. return deleteAtHead(head);
  103. }
  104. // 找到尾节点的前一个节点
  105. Node* temp = head;
  106. while (temp->next->next != NULL) {
  107. temp = temp->next;
  108. }
  109. // 删除尾节点
  110. Node* tail = temp->next;
  111. temp->next = NULL;
  112. free(tail);
  113. return head;
  114. }
  115. // 指定位置删除
  116. Node* deleteAtPos(Node* head, int pos) {
  117. // 检查删除位置是否合法
  118. if (pos < 0) {
  119. printf("Invalid position.\n");
  120. return head;
  121. }
  122. // 头部删除
  123. if (pos == 0) {
  124. return deleteAtHead(head);
  125. }
  126. // 遍历链表找到删除位置的前一个节点
  127. Node* temp = head;
  128. int count = 0;
  129. while (count < pos - 1 && temp != NULL) {
  130. temp = temp->next;
  131. count++;
  132. }
  133. // 删除位置超出链表长度,位置无效
  134. if (temp == NULL || temp->next == NULL) {
  135. printf("Invalid position.\n");
  136. return head;
  137. }
  138. // 删除节点
  139. Node* deletedNode = temp->next;
  140. temp->next = deletedNode->next;
  141. free(deletedNode);
  142. return head;
  143. }
  144. // 查找节点
  145. Node* selectNode(Node* head, int pos) {
  146. // 检查查找位置是否合法
  147. if (pos < 0) {
  148. printf("Invalid position.\n");
  149. return NULL;
  150. }
  151. // 遍历链表找到查找位置的节点
  152. Node* temp = head;
  153. int count = 0;
  154. while (count < pos && temp != NULL) {
  155. temp = temp->next;
  156. count++;
  157. }
  158. // 查找位置超出链表长度,位置无效
  159. if (temp == NULL) {
  160. printf("Invalid position.\n");
  161. return NULL;
  162. }
  163. return temp;
  164. }
  165. // 更新节点
  166. void updateNode(Node* node, data_t newData) {
  167. if (node != NULL) {
  168. node->data = newData;
  169. }
  170. else {
  171. printf("Node not found.\n");
  172. }
  173. }
  174. // 打印链表
  175. void displayList(Node* head) {
  176. Node* temp = head;
  177. while (temp != NULL) {
  178. printf("%d -> ", temp->data);
  179. temp = temp->next;
  180. }
  181. printf("NULL\n");
  182. }
  183. // 清空链表
  184. void clearList(Node** head) {
  185. Node* temp = *head;
  186. Node* nextNode;
  187. while (temp != NULL) {
  188. nextNode = temp->next;
  189. free(temp);
  190. temp = nextNode;
  191. }
  192. *head = NULL;
  193. }
  194. // 释放模块
  195. void destroyList(Node** head) {
  196. clearList(head);
  197. }
  198. int main() {
  199. Node* head = initList();
  200. // 测试插入操作
  201. head = insertAtHead(head, 3);
  202. head = insertAtTail(head, 5);
  203. head = insertAtPos(head, 7, 1);
  204. displayList(head);
  205. // 测试删除操作
  206. head = deleteAtHead(head);
  207. head = deleteAtTail(head);
  208. head = deleteAtPos(head, 0);
  209. displayList(head);
  210. // 测试查找和更新操作
  211. Node* node = selectNode(head, 0);
  212. if (node != NULL) {
  213. printf("Found Node with data = %d\n", node->data);
  214. updateNode(node, 10);
  215. printf("Updated Node data: %d\n", node->data);
  216. }
  217. else {
  218. printf("Node not found!\n");
  219. }
  220. // 清空链表
  221. clearList(&head);
  222. displayList(head);
  223. // 释放链表内存
  224. destroyList(&head);
  225. if (head == NULL) {
  226. printf("List destroyed.\n");
  227. }
  228. return 0;
  229. }

2)单向--不带头--循环链表

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. typedef int data_t;
  4. typedef struct node {
  5. data_t data;
  6. struct node* next;
  7. } Node;
  8. // 创建新节点
  9. Node* createNode(data_t data) {
  10. // 分配新节点的内存空间
  11. Node* newNode = (Node*)malloc(sizeof(Node));
  12. if (!newNode) {
  13. printf("Memory allocation failed. The program will exit.\n");
  14. exit(-1);
  15. }
  16. // 设置新节点的数据和指针
  17. newNode->data = data;
  18. newNode->next = NULL;
  19. return newNode;
  20. }
  21. // 初始化链表
  22. Node* initList() {
  23. return NULL;
  24. }
  25. // 头插法
  26. Node* insertAtHead(Node* head, data_t data) {
  27. // 创建新节点
  28. Node* newNode = createNode(data);
  29. // 如果链表为空,将新节点作为链表的头节点
  30. if (head == NULL) {
  31. newNode->next = newNode;
  32. return newNode;
  33. }
  34. // 找到链表的尾节点
  35. Node* tail = head;
  36. while (tail->next != head) {
  37. tail = tail->next;
  38. }
  39. // 将新节点插入链表头部
  40. newNode->next = head;
  41. tail->next = newNode;
  42. return newNode;
  43. }
  44. // 尾插法
  45. Node* insertAtTail(Node* head, data_t data) {
  46. // 创建新节点
  47. Node* newNode = createNode(data);
  48. // 如果链表为空,将新节点作为链表的头节点
  49. if (head == NULL) {
  50. newNode->next = newNode;
  51. return newNode;
  52. }
  53. // 找到链表的尾节点
  54. Node* tail = head;
  55. while (tail->next != head) {
  56. tail = tail->next;
  57. }
  58. // 将新节点插入链表尾部
  59. tail->next = newNode;
  60. newNode->next = head;
  61. return head;
  62. }
  63. // 指定位置插入
  64. Node* insertAtPos(Node* head, data_t data, int pos) {
  65. // 检查插入位置是否合法
  66. if (pos < 0) {
  67. printf("Invalid position.\n");
  68. return head;
  69. }
  70. // 头部插入
  71. if (pos == 0) {
  72. return insertAtHead(head, data);
  73. }
  74. // 创建新节点
  75. Node* newNode = createNode(data);
  76. // 插入位置不为头部,遍历链表找到插入位置的前一个节点
  77. Node* temp = head;
  78. int count = 0;
  79. while (count < pos - 1 && temp->next != head) {
  80. temp = temp->next;
  81. count++;
  82. }
  83. // 插入位置超出链表长度,位置无效
  84. if (temp->next == head && count < pos - 1) {
  85. printf("Invalid position.\n");
  86. return head;
  87. }
  88. // 插入新节点
  89. newNode->next = temp->next;
  90. temp->next = newNode;
  91. return head;
  92. }
  93. // 头删法
  94. Node* deleteAtHead(Node* head) {
  95. // 检查链表是否为空
  96. if (head == NULL) {
  97. printf("The list is empty.\n");
  98. return head;
  99. }
  100. // 如果链表只有一个节点,删除后返回NULL
  101. if (head->next == head) {
  102. free(head);
  103. return NULL;
  104. }
  105. // 找到链表的尾节点
  106. Node* tail = head;
  107. while (tail->next != head) {
  108. tail = tail->next;
  109. }
  110. // 删除头节点
  111. Node* temp = head;
  112. head = head->next;
  113. tail->next = head;
  114. free(temp);
  115. return head;
  116. }
  117. // 尾删法
  118. Node* deleteAtTail(Node* head) {
  119. // 检查链表是否为空
  120. if (head == NULL) {
  121. printf("The list is empty.\n");
  122. return head;
  123. }
  124. // 如果链表只有一个节点,删除后返回NULL
  125. if (head->next == head) {
  126. free(head);
  127. return NULL;
  128. }
  129. // 找到链表的尾节点和尾节点的前一个节点
  130. Node* tail = head;
  131. Node* prev = NULL;
  132. while (tail->next != head) {
  133. prev = tail;
  134. tail = tail->next;
  135. }
  136. // 删除尾节点
  137. prev->next = head;
  138. free(tail);
  139. return head;
  140. }
  141. // 指定位置删除
  142. Node* deleteAtPos(Node* head, int pos) {
  143. // 检查删除位置是否合法
  144. if (pos < 0) {
  145. printf("Invalid position.\n");
  146. return head;
  147. }
  148. // 头部删除
  149. if (pos == 0) {
  150. return deleteAtHead(head);
  151. }
  152. // 遍历链表找到删除位置的前一个节点
  153. Node* temp = head;
  154. int count = 0;
  155. while (count < pos - 1 && temp->next != head) {
  156. temp = temp->next;
  157. count++;
  158. }
  159. // 删除位置超出链表长度,位置无效
  160. if (temp->next == head && count < pos - 1) {
  161. printf("Invalid position.\n");
  162. return head;
  163. }
  164. // 删除节点
  165. Node* deletedNode = temp->next;
  166. temp->next = deletedNode->next;
  167. free(deletedNode);
  168. return head;
  169. }
  170. // 查找节点
  171. Node* selectNode(Node* head, int pos) {
  172. // 检查查找位置是否合法
  173. if (pos < 0) {
  174. printf("Invalid position.\n");
  175. return NULL;
  176. }
  177. // 遍历链表找到查找位置的节点
  178. Node* temp = head;
  179. int count = 0;
  180. while (count < pos && temp->next != head) {
  181. temp = temp->next;
  182. count++;
  183. }
  184. // 查找位置超出链表长度,位置无效
  185. if (temp->next == head && count < pos) {
  186. printf("Invalid position.\n");
  187. return NULL;
  188. }
  189. return temp;
  190. }
  191. // 更新节点
  192. void updateNode(Node* node, data_t newData) {
  193. if (node != NULL) {
  194. node->data = newData;
  195. }
  196. else {
  197. printf("Node not found.\n");
  198. }
  199. }
  200. // 打印链表
  201. void displayList(Node* head) {
  202. if (head == NULL) {
  203. printf("The list is empty.\n");
  204. return;
  205. }
  206. Node* temp = head;
  207. do {
  208. printf("%d -> ", temp->data);
  209. temp = temp->next;
  210. } while (temp != head);
  211. printf("HEAD\n");
  212. }
  213. // 清空链表
  214. void clearList(Node** head) {
  215. if (*head == NULL) {
  216. return;
  217. }
  218. Node* temp = *head;
  219. Node* nextNode = NULL;
  220. do {
  221. nextNode = temp->next;
  222. free(temp);
  223. temp = nextNode;
  224. } while (temp != *head);
  225. *head = NULL;
  226. }
  227. // 释放链表内存
  228. void destroyList(Node** head) {
  229. clearList(head);
  230. }
  231. int main() {
  232. // 初始化链表
  233. Node* head = initList();
  234. // 插入操作
  235. head = insertAtHead(head, 3);
  236. head = insertAtTail(head, 5);
  237. head = insertAtPos(head, 7, 1);
  238. displayList(head);
  239. // 删除操作
  240. head = deleteAtHead(head);
  241. head = deleteAtTail(head);
  242. head = deleteAtPos(head, 0);
  243. displayList(head);
  244. head = insertAtHead(head, 3);
  245. head = insertAtTail(head, 5);
  246. // 查找和更新操作
  247. Node* node = selectNode(head, 0);
  248. if (node != NULL) {
  249. printf("Found Node with data = %d\n", node->data);
  250. updateNode(node, 10);
  251. printf("Updated Node data: %d\n", node->data);
  252. }
  253. else {
  254. printf("Node not found!\n");
  255. }
  256. // 清空链表
  257. clearList(&head);
  258. displayList(head);
  259. // 释放链表内存
  260. destroyList(&head);
  261. if (head == NULL) {
  262. printf("List destroyed.\n");
  263. }
  264. return 0;
  265. }

3)单向--带头--不循环链表

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. typedef int data_t;
  4. typedef struct node {
  5. data_t data;
  6. struct node* next;
  7. } Node;
  8. // 创建新节点
  9. Node* createNode(data_t data) {
  10. // 分配新节点的内存空间
  11. Node* newNode = (Node*)malloc(sizeof(Node));
  12. if (!newNode) {
  13. printf("Memory allocation failed. The program will exit.\n");
  14. exit(-1);
  15. }
  16. // 设置新节点的数据和指针
  17. newNode->data = data;
  18. newNode->next = NULL;
  19. return newNode;
  20. }
  21. // 初始化链表
  22. Node* initList() {
  23. // 创建头节点,并将其数据域设为0
  24. Node* head = createNode(0);
  25. head->next = NULL;
  26. return head;
  27. }
  28. // 头插法
  29. void insertAtHead(Node* head, data_t data) {
  30. // 创建新节点
  31. Node* newNode = createNode(data);
  32. // 将新节点插入链表头部
  33. newNode->next = head->next;
  34. head->next = newNode;
  35. }
  36. // 尾插法
  37. void insertAtTail(Node* head, data_t data) {
  38. // 创建新节点
  39. Node* newNode = createNode(data);
  40. // 找到链表的尾节点
  41. Node* tail = head;
  42. while (tail->next != NULL) {
  43. tail = tail->next;
  44. }
  45. // 将新节点插入链表尾部
  46. tail->next = newNode;
  47. }
  48. // 指定位置插入
  49. void insertAtPos(Node* head, data_t data, int pos) {
  50. // 检查插入位置是否合法
  51. if (pos < 0) {
  52. printf("Invalid position.\n");
  53. return;
  54. }
  55. // 创建新节点
  56. Node* newNode = createNode(data);
  57. // 插入位置不为头部,遍历链表找到插入位置的前一个节点
  58. Node* temp = head;
  59. int count = 0;
  60. while (count < pos && temp->next != NULL) {
  61. temp = temp->next;
  62. count++;
  63. }
  64. // 插入新节点
  65. newNode->next = temp->next;
  66. temp->next = newNode;
  67. }
  68. // 头删法
  69. void deleteAtHead(Node* head) {
  70. // 检查链表是否为空
  71. if (head->next == NULL) {
  72. printf("The list is empty.\n");
  73. return;
  74. }
  75. // 删除头节点
  76. Node* temp = head->next;
  77. head->next = temp->next;
  78. free(temp);
  79. }
  80. // 尾删法
  81. void deleteAtTail(Node* head) {
  82. // 检查链表是否为空
  83. if (head->next == NULL) {
  84. printf("The list is empty.\n");
  85. return;
  86. }
  87. // 找到链表的尾节点和尾节点的前一个节点
  88. Node* prev = head;
  89. Node* tail = head->next;
  90. while (tail->next != NULL) {
  91. prev = tail;
  92. tail = tail->next;
  93. }
  94. // 删除尾节点
  95. prev->next = NULL;
  96. free(tail);
  97. }
  98. // 指定位置删除
  99. void deleteAtPos(Node* head, int pos) {
  100. // 检查删除位置是否合法
  101. if (pos < 0) {
  102. printf("Invalid position.\n");
  103. return;
  104. }
  105. // 遍历链表找到删除位置的前一个节点
  106. Node* temp = head;
  107. int count = 0;
  108. while (count < pos && temp->next != NULL) {
  109. temp = temp->next;
  110. count++;
  111. }
  112. // 删除位置超出链表长度,位置无效
  113. if (temp->next == NULL) {
  114. printf("Invalid position.\n");
  115. return;
  116. }
  117. // 删除节点
  118. Node* deletedNode = temp->next;
  119. temp->next = deletedNode->next;
  120. free(deletedNode);
  121. }
  122. // 查找节点
  123. Node* selectNode(Node* head, int pos) {
  124. // 检查查找位置是否合法
  125. if (pos < 0) {
  126. printf("Invalid position.\n");
  127. return NULL;
  128. }
  129. // 遍历链表找到查找位置的节点
  130. Node* temp = head->next;
  131. int count = 0;
  132. while (count < pos && temp != NULL) {
  133. temp = temp->next;
  134. count++;
  135. }
  136. // 查找位置超出链表长度,位置无效
  137. if (temp == NULL) {
  138. printf("Invalid position.\n");
  139. return NULL;
  140. }
  141. return temp;
  142. }
  143. // 更新节点
  144. void updateNode(Node* node, data_t newData) {
  145. if (node != NULL) {
  146. node->data = newData;
  147. }
  148. else {
  149. printf("Node not found.\n");
  150. }
  151. }
  152. // 打印链表
  153. void displayList(Node* head) {
  154. Node* temp = head->next;
  155. while (temp != NULL) {
  156. printf("%d -> ", temp->data);
  157. temp = temp->next;
  158. }
  159. printf("NULL\n");
  160. }
  161. // 清空链表
  162. void clearList(Node* head) {
  163. Node* temp = head->next;
  164. while (temp != NULL) {
  165. Node* nextNode = temp->next;
  166. free(temp);
  167. temp = nextNode;
  168. }
  169. head->next = NULL;
  170. }
  171. // 释放链表内存
  172. void destroyList(Node* head) {
  173. clearList(head);
  174. free(head);
  175. }
  176. int main() {
  177. // 初始化链表
  178. Node* head = initList();
  179. // 插入操作
  180. insertAtHead(head, 3);
  181. insertAtTail(head, 5);
  182. insertAtPos(head, 7, 1);
  183. displayList(head);
  184. // 删除操作
  185. deleteAtHead(head);
  186. deleteAtTail(head);
  187. deleteAtPos(head, 0);
  188. displayList(head);
  189. // 查找和更新操作
  190. Node* node = selectNode(head, 0);
  191. if (node != NULL) {
  192. printf("Found Node with data = %d\n", node->data);
  193. updateNode(node, 10);
  194. printf("Updated Node data: %d\n", node->data);
  195. }
  196. else {
  197. printf("Node not found!\n");
  198. }
  199. // 清空链表
  200. clearList(head);
  201. displayList(head);
  202. // 释放链表内存
  203. destroyList(head);
  204. printf("List destroyed.\n");
  205. return 0;
  206. }

4)单向--带头--循环链表

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. typedef int data_t;
  4. typedef struct node {
  5. data_t data;
  6. struct node* next;
  7. } Node;
  8. // 创建新节点
  9. Node* createNode(data_t data) {
  10. // 分配新节点的内存空间
  11. Node* newNode = (Node*)malloc(sizeof(Node));
  12. if (!newNode) {
  13. printf("Memory allocation failed. The program will exit.\n");
  14. exit(-1);
  15. }
  16. // 设置新节点的数据和指针
  17. newNode->data = data;
  18. newNode->next = NULL;
  19. return newNode;
  20. }
  21. // 初始化链表
  22. Node* initList() {
  23. // 创建头节点,并将其指针指向自身
  24. Node* head = createNode(0);
  25. head->next = head;
  26. return head;
  27. }
  28. // 头插法
  29. void insertAtHead(Node* head, data_t data) {
  30. // 创建新节点
  31. Node* newNode = createNode(data);
  32. // 插入新节点
  33. newNode->next = head->next;
  34. head->next = newNode;
  35. }
  36. // 尾插法
  37. void insertAtTail(Node* head, data_t data) {
  38. // 创建新节点
  39. Node* newNode = createNode(data);
  40. // 找到链表的尾节点
  41. Node* tail = head;
  42. while (tail->next != head) {
  43. tail = tail->next;
  44. }
  45. // 插入新节点
  46. newNode->next = head;
  47. tail->next = newNode;
  48. }
  49. // 指定位置插入
  50. void insertAtPos(Node* head, data_t data, int pos) {
  51. // 检查插入位置是否合法
  52. if (pos < 0) {
  53. printf("Invalid position.\n");
  54. return;
  55. }
  56. // 创建新节点
  57. Node* newNode = createNode(data);
  58. // 插入位置不为头部,遍历链表找到插入位置的前一个节点
  59. Node* temp = head;
  60. int count = 0;
  61. while (count < pos && temp->next != head) {
  62. temp = temp->next;
  63. count++;
  64. }
  65. // 插入新节点
  66. newNode->next = temp->next;
  67. temp->next = newNode;
  68. }
  69. // 头删法
  70. void deleteAtHead(Node* head) {
  71. // 检查链表是否为空
  72. if (head->next == head) {
  73. printf("The list is empty.\n");
  74. return;
  75. }
  76. // 删除头节点
  77. Node* temp = head->next;
  78. head->next = temp->next;
  79. free(temp);
  80. }
  81. // 尾删法
  82. void deleteAtTail(Node* head) {
  83. // 检查链表是否为空
  84. if (head->next == head) {
  85. printf("The list is empty.\n");
  86. return;
  87. }
  88. // 找到链表的尾节点和尾节点的前一个节点
  89. Node* prev = head;
  90. Node* tail = head->next;
  91. while (tail->next != head) {
  92. prev = tail;
  93. tail = tail->next;
  94. }
  95. // 删除尾节点
  96. prev->next = head;
  97. free(tail);
  98. }
  99. // 指定位置删除
  100. void deleteAtPos(Node* head, int pos) {
  101. // 检查删除位置是否合法
  102. if (pos < 0) {
  103. printf("Invalid position.\n");
  104. return;
  105. }
  106. // 遍历链表找到删除位置的前一个节点
  107. Node* temp = head;
  108. int count = 0;
  109. while (count < pos && temp->next != head) {
  110. temp = temp->next;
  111. count++;
  112. }
  113. // 删除位置超出链表长度,位置无效
  114. if (temp->next == head) {
  115. printf("Invalid position.\n");
  116. return;
  117. }
  118. // 删除节点
  119. Node* deletedNode = temp->next;
  120. temp->next = deletedNode->next;
  121. free(deletedNode);
  122. }
  123. // 查找节点
  124. Node* selectNode(Node* head, int pos) {
  125. // 检查查找位置是否合法
  126. if (pos < 0) {
  127. printf("Invalid position.\n");
  128. return NULL;
  129. }
  130. // 遍历链表找到查找位置的节点
  131. Node* temp = head->next;
  132. int count = 0;
  133. while (count < pos && temp != head) {
  134. temp = temp->next;
  135. count++;
  136. }
  137. // 查找位置超出链表长度,位置无效
  138. if (temp == head) {
  139. printf("Invalid position.\n");
  140. return NULL;
  141. }
  142. return temp;
  143. }
  144. // 更新节点
  145. void updateNode(Node* node, data_t newData) {
  146. if (node != NULL) {
  147. node->data = newData;
  148. }
  149. else {
  150. printf("Node not found.\n");
  151. }
  152. }
  153. // 打印链表
  154. void displayList(Node* head) {
  155. Node* temp = head->next;
  156. while (temp != head) {
  157. printf("%d -> ", temp->data);
  158. temp = temp->next;
  159. }
  160. printf("HEAD\n");
  161. }
  162. // 清空链表
  163. void clearList(Node* head) {
  164. Node* temp = head->next;
  165. while (temp != head) {
  166. Node* nextNode = temp->next;
  167. free(temp);
  168. temp = nextNode;
  169. }
  170. head->next = head;
  171. }
  172. // 释放链表内存
  173. void destroyList(Node* head) {
  174. clearList(head);
  175. free(head);
  176. }
  177. int main() {
  178. // 初始化链表
  179. Node* head = initList();
  180. // 插入操作
  181. insertAtHead(head, 3);
  182. insertAtTail(head, 5);
  183. insertAtPos(head, 7, 1);
  184. displayList(head);
  185. // 删除操作
  186. deleteAtHead(head);
  187. deleteAtTail(head);
  188. deleteAtPos(head, 0);
  189. displayList(head);
  190. // 查找和更新操作
  191. Node* node = selectNode(head, 0);
  192. if (node != NULL) {
  193. printf("Found Node with data = %d\n", node->data);
  194. updateNode(node, 10);
  195. printf("Updated Node data: %d\n", node->data);
  196. }
  197. else {
  198. printf("Node not found!\n");
  199. }
  200. // 清空链表
  201. clearList(head);
  202. displayList(head);
  203. // 释放链表内存
  204. destroyList(head);
  205. printf("List destroyed.\n");
  206. return 0;
  207. }

5)双向--不带头--不循环链表

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. typedef int data_t;
  4. typedef struct node {
  5. data_t data;
  6. struct node* prev;
  7. struct node* next;
  8. } Node;
  9. // 创建新节点,分配内存,并设置节点的数据和指针
  10. Node* createNode(data_t data) {
  11. Node* newNode = (Node*)malloc(sizeof(Node));
  12. if (!newNode) {
  13. printf("Memory allocation failed. The program will exit.\n");
  14. exit(-1);
  15. }
  16. newNode->data = data;
  17. newNode->prev = NULL;
  18. newNode->next = NULL;
  19. return newNode;
  20. }
  21. // 初始化链表,返回NULL,因为开始时链表是空的
  22. Node* initList() {
  23. return NULL;
  24. }
  25. // 在链表的开头插入新节点
  26. void insertAtHead(Node** head, data_t data) {
  27. Node* newNode = createNode(data);
  28. if (*head != NULL) {
  29. (*head)->prev = newNode;
  30. }
  31. newNode->next = *head;
  32. *head = newNode;
  33. }
  34. // 在链表的末尾插入新节点
  35. void insertAtTail(Node** head, data_t data) {
  36. Node* newNode = createNode(data);
  37. if (*head == NULL) {
  38. *head = newNode;
  39. return;
  40. }
  41. Node* temp = *head;
  42. while (temp->next != NULL) {
  43. temp = temp->next;
  44. }
  45. temp->next = newNode;
  46. newNode->prev = temp;
  47. }
  48. // 在链表的指定位置插入新节点
  49. void insertAtPos(Node** head, data_t data, int pos) {
  50. if (pos == 0) {
  51. insertAtHead(head, data);
  52. return;
  53. }
  54. Node* newNode = createNode(data);
  55. Node* temp = *head;
  56. for (int i = 0; i < pos - 1; i++) {
  57. if (temp == NULL) {
  58. printf("Invalid position.\n");
  59. free(newNode);
  60. return;
  61. }
  62. temp = temp->next;
  63. }
  64. newNode->next = temp->next;
  65. newNode->prev = temp;
  66. if (temp->next != NULL) {
  67. temp->next->prev = newNode;
  68. }
  69. temp->next = newNode;
  70. }
  71. // 删除链表的头节点
  72. void deleteAtHead(Node** head) {
  73. if (*head == NULL) {
  74. printf("The list is empty.\n");
  75. return;
  76. }
  77. Node* temp = *head;
  78. *head = (*head)->next;
  79. if (*head != NULL) {
  80. (*head)->prev = NULL;
  81. }
  82. free(temp);
  83. }
  84. // 删除链表的尾节点
  85. void deleteAtTail(Node** head) {
  86. if (*head == NULL) {
  87. printf("The list is empty.\n");
  88. return;
  89. }
  90. Node* temp = *head;
  91. while (temp->next != NULL) {
  92. temp = temp->next;
  93. }
  94. if (temp->prev != NULL) {
  95. temp->prev->next = NULL;
  96. }
  97. else {
  98. *head = NULL;
  99. }
  100. free(temp);
  101. }
  102. // 删除链表的指定位置的节点
  103. void deleteAtPos(Node** head, int pos) {
  104. if (*head == NULL) {
  105. printf("The list is empty.\n");
  106. return;
  107. }
  108. if (pos == 0) {
  109. deleteAtHead(head);
  110. return;
  111. }
  112. Node* temp = *head;
  113. for (int i = 0; i < pos; i++) {
  114. if (temp == NULL) {
  115. printf("Invalid position.\n");
  116. return;
  117. }
  118. temp = temp->next;
  119. }
  120. temp->prev->next = temp->next;
  121. if (temp->next != NULL) {
  122. temp->next->prev = temp->prev;
  123. }
  124. free(temp);
  125. }
  126. // 查找链表的指定位置的节点
  127. Node* selectNode(Node* head, int pos) {
  128. Node* temp = head;
  129. for (int i = 0; i < pos; i++) {
  130. if (temp == NULL) {
  131. printf("Invalid position.\n");
  132. return NULL;
  133. }
  134. temp = temp->next;
  135. }
  136. return temp;
  137. }
  138. // 更新节点的数据
  139. void updateNode(Node* node, data_t newData) {
  140. if (node != NULL) {
  141. node->data = newData;
  142. }
  143. else {
  144. printf("Node not found.\n");
  145. }
  146. }
  147. // 打印链表的数据
  148. void displayList(Node* head) {
  149. Node* temp = head;
  150. while (temp != NULL) {
  151. printf("%d -> ", temp->data);
  152. temp = temp->next;
  153. }
  154. printf("NULL\n");
  155. }
  156. // 清空链表,删除除头节点外的所有节点
  157. void clearList(Node** head) {
  158. Node* temp = *head;
  159. while (temp != NULL) {
  160. Node* next = temp->next;
  161. free(temp);
  162. temp = next;
  163. }
  164. *head = NULL;
  165. }
  166. // 释放链表的内存,包括头节点
  167. void destroyList(Node** head) {
  168. clearList(head);
  169. }
  170. int main() {
  171. Node* head = initList();
  172. insertAtHead(&head, 3);
  173. insertAtTail(&head, 5);
  174. insertAtPos(&head, 7, 1);
  175. displayList(head);
  176. deleteAtHead(&head);
  177. deleteAtTail(&head);
  178. deleteAtPos(&head, 0);
  179. displayList(head);
  180. Node* node = selectNode(head, 0);
  181. if (node != NULL) {
  182. printf("Found Node with data = %d\n", node->data);
  183. updateNode(node, 10);
  184. printf("Updated Node data: %d\n", node->data);
  185. }
  186. else {
  187. printf("Node not found!\n");
  188. }
  189. clearList(&head);
  190. displayList(head);
  191. destroyList(&head);
  192. printf("List destroyed.\n");
  193. return 0;
  194. }

6)双向--不带头--循环链表

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. typedef int data_t;
  4. typedef struct node {
  5. data_t data;
  6. struct node* prev;
  7. struct node* next;
  8. } Node;
  9. // 创建新节点,分配内存,并设置节点的数据和指针
  10. Node* createNode(data_t data) {
  11. Node* newNode = (Node*)malloc(sizeof(Node));
  12. if (!newNode) {
  13. printf("Memory allocation failed. The program will exit.\n");
  14. exit(-1);
  15. }
  16. newNode->data = data;
  17. newNode->prev = newNode; // 链表中的最后一个节点指向自己
  18. newNode->next = newNode; // 链表中的第一个节点指向自己
  19. return newNode;
  20. }
  21. // 初始化链表,返回一个新节点,节点的数据为0
  22. Node* initList() {
  23. return createNode(0);
  24. }
  25. // 在链表的开头插入新节点
  26. void insertAtHead(Node* head, data_t data) {
  27. Node* newNode = createNode(data);
  28. newNode->next = head->next;
  29. newNode->prev = head;
  30. head->next->prev = newNode;
  31. head->next = newNode;
  32. }
  33. // 在链表的末尾插入新节点
  34. void insertAtTail(Node* head, data_t data) {
  35. Node* newNode = createNode(data);
  36. newNode->next = head;
  37. newNode->prev = head->prev;
  38. head->prev->next = newNode;
  39. head->prev = newNode;
  40. }
  41. // 在链表的指定位置插入新节点
  42. void insertAtPos(Node* head, data_t data, int pos) {
  43. Node* temp = head;
  44. for (int i = 0; i < pos; i++) {
  45. temp = temp->next;
  46. if (temp == head) {
  47. printf("Invalid position.\n");
  48. return;
  49. }
  50. }
  51. Node* newNode = createNode(data);
  52. newNode->next = temp->next;
  53. newNode->prev = temp;
  54. temp->next->prev = newNode;
  55. temp->next = newNode;
  56. }
  57. // 删除链表的头节点
  58. void deleteAtHead(Node* head) {
  59. if (head->next == head) {
  60. printf("The list is empty.\n");
  61. return;
  62. }
  63. Node* temp = head->next;
  64. temp->next->prev = head;
  65. head->next = temp->next;
  66. free(temp);
  67. }
  68. // 删除链表的尾节点
  69. void deleteAtTail(Node* head) {
  70. if (head->next == head) {
  71. printf("The list is empty.\n");
  72. return;
  73. }
  74. Node* temp = head->prev;
  75. temp->prev->next = head;
  76. head->prev = temp->prev;
  77. free(temp);
  78. }
  79. // 删除链表的指定位置的节点
  80. void deleteAtPos(Node* head, int pos) {
  81. Node* temp = head;
  82. for (int i = 0; i < pos; i++) {
  83. temp = temp->next;
  84. if (temp == head) {
  85. printf("Invalid position.\n");
  86. return;
  87. }
  88. }
  89. temp = temp->next;
  90. if (temp == head) {
  91. printf("Invalid position.\n");
  92. return;
  93. }
  94. temp->prev->next = temp->next;
  95. temp->next->prev = temp->prev;
  96. free(temp);
  97. }
  98. // 查找链表的指定位置的节点
  99. Node* selectNode(Node* head, int pos) {
  100. Node* temp = head;
  101. for (int i = 0; i < pos; i++) {
  102. temp = temp->next;
  103. if (temp == head) {
  104. printf("Invalid position.\n");
  105. return NULL;
  106. }
  107. }
  108. return temp->next;
  109. }
  110. // 更新节点的数据
  111. void updateNode(Node* node, data_t newData) {
  112. if (node != NULL) {
  113. node->data = newData;
  114. }
  115. else {
  116. printf("Node not found.\n");
  117. }
  118. }
  119. // 打印链表的所有节点
  120. void displayList(Node* head) {
  121. Node* temp = head->next;
  122. while (temp != head) {
  123. printf("%d -> ", temp->data);
  124. temp = temp->next;
  125. }
  126. printf("HEAD\n");
  127. }
  128. // 清空链表,删除所有节点
  129. void clearList(Node* head) {
  130. Node* temp = head->next;
  131. while (temp != head) {
  132. Node* next = temp->next;
  133. free(temp);
  134. temp = next;
  135. }
  136. head->prev = head;
  137. head->next = head;
  138. }
  139. // 释放链表的内存
  140. void destroyList(Node** headRef) {
  141. clearList(*headRef);
  142. free(*headRef);
  143. *headRef = NULL;
  144. }
  145. // 主函数,测试链表的功能
  146. int main() {
  147. Node* head = initList();
  148. insertAtHead(head, 1);
  149. insertAtTail(head, 2);
  150. insertAtPos(head, 3, 1);
  151. displayList(head);
  152. deleteAtHead(head);
  153. deleteAtTail(head);
  154. deleteAtPos(head, 0);
  155. displayList(head);
  156. Node* node = selectNode(head, 0);
  157. if (node != NULL) {
  158. printf("Found node with data = %d\n", node->data);
  159. updateNode(node, 10);
  160. printf("Updated node data = %d\n", node->data);
  161. }
  162. else {
  163. printf("Node not found!\n");
  164. }
  165. clearList(head);
  166. displayList(head);
  167. destroyList(&head);
  168. printf("List destroyed.\n");
  169. return 0;
  170. }

7)双向--带头--不循环链表

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. typedef int data_t;
  4. typedef struct node {
  5. data_t data;
  6. struct node* prev;
  7. struct node* next;
  8. } Node;
  9. // 创建新节点,分配内存,并设置节点的数据和指针
  10. Node* createNode(data_t data) {
  11. Node* newNode = (Node*)malloc(sizeof(Node));
  12. if (!newNode) {
  13. printf("Memory allocation failed. The program will exit.\n");
  14. exit(-1);
  15. }
  16. newNode->data = data;
  17. newNode->prev = NULL;
  18. newNode->next = NULL;
  19. return newNode;
  20. }
  21. // 初始化链表,返回一个新节点,作为头节点
  22. Node* initList() {
  23. return createNode(0);
  24. }
  25. // 在链表的开头插入新节点
  26. void insertAtHead(Node* head, data_t data) {
  27. Node* newNode = createNode(data);
  28. newNode->next = head->next;
  29. newNode->prev = head;
  30. if (head->next != NULL) {
  31. head->next->prev = newNode;
  32. }
  33. head->next = newNode;
  34. }
  35. // 在链表的末尾插入新节点
  36. void insertAtTail(Node* head, data_t data) {
  37. Node* newNode = createNode(data);
  38. Node* temp = head;
  39. while (temp->next != NULL) {
  40. temp = temp->next;
  41. }
  42. newNode->prev = temp;
  43. temp->next = newNode;
  44. }
  45. // 在链表的指定位置插入新节点
  46. void insertAtPos(Node* head, data_t data, int pos) {
  47. Node* temp = head;
  48. for (int i = 0; i < pos; i++) {
  49. if (temp->next == NULL) {
  50. printf("Invalid position.\n");
  51. return;
  52. }
  53. temp = temp->next;
  54. }
  55. Node* newNode = createNode(data);
  56. newNode->next = temp->next;
  57. newNode->prev = temp;
  58. if (temp->next != NULL) {
  59. temp->next->prev = newNode;
  60. }
  61. temp->next = newNode;
  62. }
  63. // 删除链表的头节点
  64. void deleteAtHead(Node* head) {
  65. if (head->next == NULL) {
  66. printf("The list is empty.\n");
  67. return;
  68. }
  69. Node* temp = head->next;
  70. head->next = temp->next;
  71. if (temp->next != NULL) {
  72. temp->next->prev = head;
  73. }
  74. free(temp);
  75. }
  76. // 删除链表的尾节点
  77. void deleteAtTail(Node* head) {
  78. if (head->next == NULL) {
  79. printf("The list is empty.\n");
  80. return;
  81. }
  82. Node* temp = head;
  83. while (temp->next != NULL) {
  84. temp = temp->next;
  85. }
  86. temp->prev->next = NULL;
  87. free(temp);
  88. }
  89. // 删除链表的指定位置的节点
  90. void deleteAtPos(Node* head, int pos) {
  91. Node* temp = head;
  92. for (int i = 0; i < pos; i++) {
  93. if (temp->next == NULL) {
  94. printf("Invalid position.\n");
  95. return;
  96. }
  97. temp = temp->next;
  98. }
  99. if (temp->next == NULL) {
  100. printf("Invalid position.\n");
  101. return;
  102. }
  103. Node* next = temp->next->next;
  104. if (next != NULL) {
  105. next->prev = temp;
  106. }
  107. free(temp->next);
  108. temp->next = next;
  109. }
  110. // 查找链表的指定位置的节点
  111. Node* selectNode(Node* head, int pos) {
  112. Node* temp = head;
  113. for (int i = 0; i < pos; i++) {
  114. if (temp->next == NULL) {
  115. printf("Invalid position.\n");
  116. return NULL;
  117. }
  118. temp = temp->next;
  119. }
  120. return temp->next;
  121. }
  122. // 更新节点的数据
  123. void updateNode(Node* node, data_t newData) {
  124. if (node != NULL) {
  125. node->data = newData;
  126. }
  127. else {
  128. printf("Node not found.\n");
  129. }
  130. }
  131. // 打印链表的所有节点
  132. void displayList(Node* head) {
  133. Node* temp = head->next;
  134. while (temp != NULL) {
  135. printf("%d -> ", temp->data);
  136. temp = temp->next;
  137. }
  138. printf("NULL\n");
  139. }
  140. // 清空链表,删除所有节点
  141. void clearList(Node* head) {
  142. while (head->next != NULL) {
  143. deleteAtHead(head);
  144. }
  145. }
  146. // 释放链表的内存
  147. void destroyList(Node** headRef) {
  148. clearList(*headRef);
  149. free(*headRef);
  150. *headRef = NULL;
  151. }
  152. // 主函数,测试链表的功能
  153. int main() {
  154. Node* head = initList();
  155. insertAtHead(head, 1);
  156. insertAtTail(head, 2);
  157. insertAtPos(head, 3, 1);
  158. displayList(head);
  159. deleteAtHead(head);
  160. deleteAtTail(head);
  161. deleteAtPos(head, 0);
  162. displayList(head);
  163. Node* node = selectNode(head, 0);
  164. if (node != NULL) {
  165. printf("Found node with data = %d\n", node->data);
  166. updateNode(node, 10);
  167. printf("Updated node data = %d\n", node->data);
  168. }
  169. else {
  170. printf("Node not found!\n");
  171. }
  172. clearList(head);
  173. displayList(head);
  174. destroyList(&head);
  175. printf("List destroyed.\n");
  176. return 0;
  177. }

8)双向--带头--循环链表

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. typedef int data_t;
  4. typedef struct node {
  5. data_t data;
  6. struct node* prev;
  7. struct node* next;
  8. } Node;
  9. // 创建新节点,分配内存,并设置节点的数据和指针
  10. Node* createNode(data_t data) {
  11. Node* newNode = (Node*)malloc(sizeof(Node));
  12. if (!newNode) {
  13. printf("Memory allocation failed. The program will exit.\n");
  14. exit(-1);
  15. }
  16. newNode->data = data;
  17. newNode->prev = NULL;
  18. newNode->next = NULL;
  19. return newNode;
  20. }
  21. // 初始化链表,返回一个新节点,作为头节点
  22. Node* initList() {
  23. Node* head = createNode(0);
  24. head->next = head;
  25. head->prev = head;
  26. return head;
  27. }
  28. // 在链表的开头插入新节点
  29. void insertAtHead(Node* head, data_t data) {
  30. Node* newNode = createNode(data);
  31. newNode->next = head->next;
  32. newNode->prev = head;
  33. head->next->prev = newNode;
  34. head->next = newNode;
  35. }
  36. // 在链表的末尾插入新节点
  37. void insertAtTail(Node* head, data_t data) {
  38. Node* newNode = createNode(data);
  39. newNode->next = head;
  40. newNode->prev = head->prev;
  41. head->prev->next = newNode;
  42. head->prev = newNode;
  43. }
  44. // 在链表的指定位置插入新节点
  45. void insertAtPos(Node* head, data_t data, int pos) {
  46. Node* temp = head;
  47. for (int i = 0; i < pos; i++) {
  48. if (temp->next == head) {
  49. printf("Invalid position.\n");
  50. return;
  51. }
  52. temp = temp->next;
  53. }
  54. Node* newNode = createNode(data);
  55. newNode->next = temp->next;
  56. newNode->prev = temp;
  57. temp->next->prev = newNode;
  58. temp->next = newNode;
  59. }
  60. // 删除链表的头节点
  61. void deleteAtHead(Node* head) {
  62. if (head->next == head) {
  63. printf("The list is empty.\n");
  64. return;
  65. }
  66. Node* temp = head->next;
  67. head->next = temp->next;
  68. temp->next->prev = head;
  69. free(temp);
  70. }
  71. // 删除链表的尾节点
  72. void deleteAtTail(Node* head) {
  73. if (head->next == head) {
  74. printf("The list is empty.\n");
  75. return;
  76. }
  77. Node* temp = head->prev;
  78. head->prev = temp->prev;
  79. temp->prev->next = head;
  80. free(temp);
  81. }
  82. // 删除链表的指定位置的节点
  83. void deleteAtPos(Node* head, int pos) {
  84. Node* temp = head;
  85. for (int i = 0; i < pos; i++) {
  86. if (temp->next == head) {
  87. printf("Invalid position.\n");
  88. return;
  89. }
  90. temp = temp->next;
  91. }
  92. if (temp->next == head) {
  93. printf("Invalid position.\n");
  94. return;
  95. }
  96. Node* next = temp->next->next;
  97. next->prev = temp;
  98. free(temp->next);
  99. temp->next = next;
  100. }
  101. // 查找链表的指定位置的节点
  102. Node* selectNode(Node* head, int pos) {
  103. Node* temp = head;
  104. for (int i = 0; i < pos; i++) {
  105. if (temp->next == head) {
  106. printf("Invalid position.\n");
  107. return NULL;
  108. }
  109. temp = temp->next;
  110. }
  111. if (temp->next == head) {
  112. printf("Invalid position.\n");
  113. return NULL;
  114. }
  115. return temp->next;
  116. }
  117. // 更新节点的数据
  118. void updateNode(Node* node, data_t newData) {
  119. if (node != NULL) {
  120. node->data = newData;
  121. }
  122. else {
  123. printf("Node not found.\n");
  124. }
  125. }
  126. // 打印链表的所有节点
  127. void displayList(Node* head) {
  128. Node* temp = head->next;
  129. while (temp != head) {
  130. printf("%d -> ", temp->data);
  131. temp = temp->next;
  132. }
  133. printf("NULL\n");
  134. }
  135. // 清空链表,删除所有节点
  136. void clearList(Node* head) {
  137. while (head->next != head) {
  138. deleteAtHead(head);
  139. }
  140. }
  141. // 释放链表的内存
  142. void destroyList(Node** headRef) {
  143. clearList(*headRef);
  144. free(*headRef);
  145. *headRef = NULL;
  146. }
  147. // 主函数,测试链表的功能
  148. int main() {
  149. Node* head = initList();
  150. insertAtHead(head, 1);
  151. insertAtTail(head, 2);
  152. insertAtPos(head, 3, 1);
  153. displayList(head);
  154. deleteAtHead(head);
  155. deleteAtTail(head);
  156. deleteAtPos(head, 0);
  157. displayList(head);
  158. Node* node = selectNode(head, 0);
  159. if (node != NULL) {
  160. printf("Found node with data = %d\n", node->data);
  161. updateNode(node, 10);
  162. printf("Updated node data = %d\n", node->data);
  163. }
  164. else {
  165. printf("Node not found!\n");
  166. }
  167. clearList(head);
  168. displayList(head);
  169. destroyList(&head);
  170. printf("List destroyed.\n");
  171. return 0;
  172. }

参考资料:

  1. 程杰:《大话数据结构》
  2. 王晓华:《算法的乐趣》
  3. 严蔚敏、吴伟民:《数据结构(C语言版)》
  4. 渡部有隆:《挑战程序设计竞赛2》
  5. 石田保辉:《我的第一本算法书》
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/426639
推荐阅读
相关标签
  

闽ICP备14008679号