删除C ++中给定位置的链接列表节点

在本教程中,我们将学习如何删除具有给定位置的单链列表中的节点。

让我们看看解决问题的步骤。

  • 用数据和下一个指针写struct。

  • 编写一个函数以将节点插入到单链列表中。

  • 用伪数据初始化单链表。

  • 初始化位置以删除节点。

  • 遍历链接列表,找到具有给定位置的节点以删除该节点。

  • 编写一个删除节点的函数。删除节点时,请考虑以下三种情况。

    • 如果该节点是头节点,则将头移到下一个节点。

    • 如果该节点是中间节点,则将下一个节点链接到上一个节点

    • 如果该节点是结束节点,则删除上一个节点链接。

示例

让我们看一下代码

#include <bits/stdc++.h>
using namespace std;
struct Node {
   int data;
   struct Node *next;
};
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->next = (*head_ref);
   (*head_ref) = new_node;
}
void deleteNode(struct Node **head_ref, int position) {
   if (*head_ref == NULL) {
      return;
   }
   struct Node* temp = *head_ref;
   if (position == 1) {
      *head_ref = temp->next;
      free(temp);
      return;
   }
   for (int i = 2; temp != NULL && i < position - 1; i++) {
      temp = temp->next;
   }
   if (temp == NULL || temp->next == NULL) {
      return;
   }
   struct Node *next = temp->next->next;
   free(temp->next);
   temp->next = next;
}
void printLinkedList(struct Node *node) {
   while (node != NULL) {
      cout << node->data << "->";
      node = node->next;
   }
}
int main() {
   struct Node* head = NULL;
   insertNode(&head, 1);
   insertNode(&head, 2);
   insertNode(&head, 3);
   insertNode(&head, 4);
   insertNode(&head, 5);
   cout << "删除前的链接列表:" << endl;
   printLinkedList(head);
   deleteNode(&head, 1);
   cout << "\nLinked list after deletion:" << endl;
   printLinkedList(head);
   return 0;
}
输出结果

如果执行上述程序,则将得到以下结果。

删除前的链接列表:
5->4->3->2->1->
Linked list after deletion:
4->3->2->1->

结论

如果您对本教程有任何疑问,请在评论部分中提及。