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

ค้นหาโหนด kth จากตรงกลางไปยังส่วนหัวของรายการที่เชื่อมโยงใน C++


ในปัญหานี้ เราได้รับรายการเชื่อมโยงและหมายเลข k งานของเราคือ ค้นหาโหนด kth จากตรงกลางไปยังส่วนหัวของรายการที่เชื่อมโยง

มาดูตัวอย่างเพื่อทำความเข้าใจปัญหากัน

ป้อนข้อมูล: ลิงค์ลิสต์ :4 -> 2 -> 7 -> 1 -> 9 -> 12 -> 8 -> 10 -> 5, k =2

ผลลัพธ์: 7

คำอธิบาย:

ค่าโหนดกลางคือ 9.

โหนดที่ 2 จากตรงกลางไปยังส่วนหัวคือ 7

แนวทางการแก้ปัญหา

เราจำเป็นต้องค้นหาองค์ประกอบ kth จากตรงกลางของรายการเชื่อมโยงไปยังจุดเริ่มต้น สำหรับสิ่งนี้ เราจำเป็นต้องค้นหาขนาดของลิงค์ลิสต์โดยผ่านลิงค์ลิสต์ตั้งแต่ต้นจนจบและหาขนาด

องค์ประกอบ K จากตรงกลางไปสู่จุดเริ่มต้นคือองค์ประกอบ (n/2 + 1 - k) จากจุดเริ่มต้น

โปรแกรมเพื่อแสดงการทำงานของโซลูชันของเรา

ตัวอย่าง

#include <iostream>
using namespace std;

struct Node {
   int data;
   struct Node* next;
};

void pushNode(struct Node** head_ref, int new_data)
{
   struct Node* new_node = new Node;
   new_node->data = new_data;
   new_node->next = (*head_ref);
   (*head_ref) = new_node;
}

int findKmiddleNode(struct Node* head_ref, int k) {
   
   int n = 0;
   struct Node* counter = head_ref;
   while (counter != NULL) {
      n++;
      counter = counter->next;
   }
   int reqNode = ((n / 2 + 1) - k);

   if (reqNode <= 0)
      return -1;
     
   struct Node* current = head_ref;
   int count = 1;
   while (current != NULL) {
      if (count == reqNode)
         return (current->data);
      count++;
      current = current->next;
   }
}

int main()
{

   struct Node* head = NULL;
   int k = 2;
   pushNode(&head, 5);
   pushNode(&head, 10);
   pushNode(&head, 8);
   pushNode(&head, 12);
   pushNode(&head, 9);
   pushNode(&head, 1);
   pushNode(&head, 7);  
   pushNode(&head, 2);
   pushNode(&head, 4);

   cout<<k<<"th element from beginning towards head is "<<findKmiddleNode(head, k);

   return 0;
}

ผลลัพธ์

2th element from beginning towards head is 7