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

ค้นหาจำนวนโหนดทั่วไปในสองรายการที่เชื่อมโยงแบบทวีคูณใน C++


สมมติว่าเรามีรายการที่เชื่อมโยงแบบทวีคูณสองรายการ เราต้องหาจำนวนโหนดทั่วไปทั้งหมดในรายการที่เชื่อมโยงเป็นสองเท่า ดังนั้น หากสองรายการเป็นเหมือน [15, 16, 10, 9, 7, 17] และ [15, 16, 40, 6, 9] แสดงว่ามีโหนดทั่วไปสามโหนด

สำรวจทั้งสองรายการจนถึงจุดสิ้นสุดของรายการโดยใช้สองลูปที่ซ้อนกัน สำหรับทุกโหนดในรายการ ตรวจสอบว่าโหนดตรงกับโหนดของรายการที่สองหรือไม่ หากพบที่ตรงกัน ให้เพิ่มตัวนับ แล้วส่งคืนการนับในที่สุด

ตัวอย่าง

#include<iostream>
using namespace std;
class Node {
   public:
      int data;
   Node *back, *front;
};
void append(Node** start, int new_data) {
   Node* new_node = new Node;
   new_node->data = new_data;
   new_node->back = NULL;
   new_node->front = (*start);
   if ((*start) != NULL)
      (*start)->back = new_node;
   (*start) = new_node;
}
int countCommonNodes(Node** start1, Node** start2) {
   Node* ptr = *start1;
   Node* ptr1 = *start2;
   int count = 0;
   while (ptr != NULL) {
      while (ptr1 != NULL) {
         if (ptr->data == ptr1->data) {
            count++;
            break;
         }
         ptr1 = ptr1->front;
      }
      ptr1 = *start2;
      ptr = ptr->front;
   }
   return count;
}
int main() {
   Node* first = NULL;
   Node* second = NULL;
   append(&first, 15);
   append(&first, 16);
   append(&first, 10);
   append(&first, 9);
   append(&first, 7);
   append(&first, 17);
   append(&second, 15);
   append(&second, 16);
   append(&second, 40);
   append(&second, 6);
   append(&second, 9);
   cout << "Number of common nodes:" << countCommonNodes(&first, &second);
}

ผลลัพธ์

Number of common nodes:3