您的位置:首页 > 文旅 > 旅游 > C语言-- 双链表实现

C语言-- 双链表实现

2024/12/23 7:13:28 来源:https://blog.csdn.net/m0_60936698/article/details/141283510  浏览:    关键词:C语言-- 双链表实现

 双链表实现

双链表的每个节点包含指向前一个和后一个节点的指针。


 

#include <stdio.h>
#include <stdlib.h>typedef struct Node {int data;struct Node *prev; // 指向前一个节点struct Node *next; // 指向下一个节点
} Node;typedef struct {Node *head; // 头指针
} DoublyLinkedList;// 初始化双链表
void initList(DoublyLinkedList *list) {list->head = NULL;
}// 插入节点
void insert(DoublyLinkedList *list, int value) {Node *newNode = (Node *)malloc(sizeof(Node));newNode->data = value;newNode->prev = NULL;newNode->next = list->head;if (list->head != NULL) {list->head->prev = newNode;}list->head = newNode;
}// 打印链表
void printList(DoublyLinkedList *list) {Node *current = list->head;while (current != NULL) {printf("%d ", current->data);current = current->next;}printf("\n");
}// 释放链表
void freeList(DoublyLinkedList *list) {Node *current = list->head;while (current != NULL) {Node *temp = current;current = current->next;free(temp);}
}int main() {DoublyLinkedList list;initList(&list);insert(&list, 10);insert(&list, 20);insert(&list, 30);printList(&list);freeList(&list);return 0;
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com