在本教程中,我们将学习如何删除具有给定位置的双向链表中的节点。
让我们看看解决问题的步骤。
用数据,上一个和下一个指针写struct。
编写一个函数,将节点插入到双向链表中。
用伪数据初始化双链表。
初始化位置以删除节点。
遍历链接列表,找到具有给定位置的节点以删除该节点。
编写一个删除节点的函数。删除节点时,请考虑以下三种情况。
如果该节点是头节点,则将头移到下一个节点。
如果该节点是中间节点,则将下一个节点链接到上一个节点
如果该节点是结束节点,则删除上一个节点链接。
让我们看一下代码。
#include <bits/stdc++.h> using namespace std; struct Node { int data; struct Node *prev, *next; }; void deleteNode(struct Node** head_ref, struct Node* del) { if (*head_ref == NULL || del == NULL) { return; } // 头节点 if (*head_ref == del) { *head_ref = del->next; } // 中间节点 if (del->next != NULL) { del->next->prev = del->prev; } // 终端节点 if (del->prev != NULL) { del->prev->next = del->next; } free(del); } void deleteNodeAtGivenPosition(struct Node** head_ref, int n) { if (*head_ref == NULL || n <= 0) { return; } struct Node* current = *head_ref; int i; for (int i = 1; current != NULL && i < n; i++) { current = current->next; } if (current == NULL) { return; } deleteNode(head_ref, current); } void insertNode(struct Node** head_ref, int new_data) { struct Node* new_node = (struct Node*)malloc(sizeof(struct Node)); new_node->data = new_data; new_node->prev = NULL; new_node->next = (*head_ref); if ((*head_ref) != NULL) { (*head_ref)->prev = new_node; } (*head_ref) = new_node; } void printLinkedList(struct Node* head) { while (head != NULL) { cout << head->data << "->"; head = head->next; } } int main() { struct Node* head = NULL; insertNode(&head, 5); insertNode(&head, 2); insertNode(&head, 4); insertNode(&head, 8); insertNode(&head, 10); cout << "Doubly linked list before deletion" << endl; printLinkedList(head); int n = 2; deleteNodeAtGivenPosition(&head, n); cout << "\nDoubly linked list after deletion" << endl; printLinkedList(head); return 0; }输出结果
如果执行上述程序,则将得到以下结果。
Doubly linked list before deletion 10->8->4->2->5-> Doubly linked list after deletion 10->4->2->5->
如果您对本教程有任何疑问,请在评论部分中提及。