从双向链接列表中删除所有大于C ++中给定值的节点

在本教程中,我们将学习如何从双向链表中删除所有主要节点。

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

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

  • 编写一个函数,将节点插入到双向链表中。

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

  • 遍历双向链表。查找当前节点数据是否大于给定值。

  • 如果当前数据大于给定值,则删除该节点。

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

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

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

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

示例

让我们看一下代码。

#include <bits/stdc++.h>

using namespace std;

struct Node {

   int data;

   Node *prev, *next;

};

void insertNode(Node** head_ref, int new_data) {

   Node* new_node = (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 deleteNode(Node** head_ref, 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);

   return;

}

void deleteGreaterNode(Node** head_ref, int K) {

   Node* temp = *head_ref;

   Node* next;

   while (temp != NULL) {

      next = temp->next;

      if (temp->data > K) {

         deleteNode(head_ref, temp);

      }

      temp = next;

   }

}

void printLinkedList(Node* head) {

   while (head != NULL) {

      cout << head->data << " -> ";

      head = head->next;

   }

}

int main() {

   Node* head = NULL;

   insertNode(&head, 1);

   insertNode(&head, 2);

   insertNode(&head, 3);

   insertNode(&head, 4);

   insertNode(&head, 10);

   insertNode(&head, 11);

   insertNode(&head, 12);

   int K = 10;

   cout << "删除前的链表:" << endl;

   printLinkedList(head);

   deleteGreaterNode(&head, K);

   cout << "\nLinked List after deletion:" << endl;

   printLinkedList(head);

}

输出结果

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

删除前的链表:

12 -> 11 -> 10 -> 4 -> 3 -> 2 -> 1 ->

Linked List after deletion:

10 -> 4 -> 3 -> 2 -> 1 ->

结论

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

以上是 从双向链接列表中删除所有大于C ++中给定值的节点 的全部内容, 来源链接: utcz.com/z/334603.html

回到顶部