Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

ลบโหนดรายการที่เชื่อมโยงแบบทวีคูณที่ตำแหน่งที่กำหนดใน C ++


ในบทช่วยสอนนี้ เราจะเรียนรู้วิธีลบโหนดในรายการที่เชื่อมโยงแบบทวีคูณด้วยตำแหน่งที่กำหนด

มาดูขั้นตอนการแก้ปัญหากัน

  • เขียนโครงสร้างด้วยข้อมูล ตัวชี้ก่อนหน้าและถัดไป

  • เขียนฟังก์ชันเพื่อแทรกโหนดลงในรายการที่เชื่อมโยงแบบทวีคูณ

  • เริ่มต้นรายการที่เชื่อมโยงแบบทวีคูณด้วยข้อมูลจำลอง

  • เริ่มต้นตำแหน่งที่จะลบโหนด

  • วนซ้ำในรายการที่เชื่อมโยงและค้นหาโหนดที่มีตำแหน่งที่กำหนดเพื่อลบโหนด

  • เขียนฟังก์ชันเพื่อลบโหนด พิจารณาสามกรณีต่อไปนี้ขณะลบโหนด

    • หากโหนดเป็นโหนดหลัก ให้ย้ายส่วนหัวไปยังโหนดถัดไป

    • หากโหนดเป็นโหนดกลาง ให้เชื่อมโยงโหนดถัดไปกับโหนดก่อนหน้า

    • หากโหนดเป็นโหนดปลาย ให้ลบลิงก์โหนดก่อนหน้าออก

ตัวอย่าง

มาดูโค้ดกันเลย

#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;
   }
   // head node
   if (*head_ref == del) {
      *head_ref = del->next;
   }
   // middle node
   if (del->next != NULL) {
      del->next->prev = del->prev;
   }
   // end node
   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->

บทสรุป

หากคุณมีข้อสงสัยใดๆ ในบทแนะนำ โปรดระบุในส่วนความคิดเห็น