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

สร้างมิเรอร์ทรีจากไบนารีทรีที่กำหนดในโปรแกรม C++


ในบทช่วยสอนนี้ เราจะสะท้อนถึงไบนารีทรีที่กำหนด

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

  • เขียนโหนดโครงสร้าง

  • สร้างไบนารีทรีด้วยข้อมูลจำลอง

  • เขียนฟังก์ชันแบบเรียกซ้ำเพื่อค้นหามิเรอร์ของไบนารีทรีที่กำหนด

    • เรียกใช้ฟังก์ชันซ้ำด้วยโหนดซ้ายและขวา

    • สลับข้อมูลโหนดด้านซ้ายกับข้อมูลโหนดที่ถูกต้อง

  • พิมพ์ต้นไม้

ตัวอย่าง

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

#include<bits/stdc++.h>
using namespace std;
struct Node {
   int data;
   struct Node* left;
   struct Node* right;
};
struct Node* newNode(int data) {
   struct Node* node = new Node;
   node->data = data;
   node->left = NULL;
   node->right = NULL;
   return node;
}
void convertTreeToItsMirror(struct Node* node) {
   if (node == NULL) {
      return;
   }
   else {
      struct Node* temp;
      convertTreeToItsMirror(node->left);
      convertTreeToItsMirror(node->right);
      temp = node->left;
      node->left = node->right;
      node->right = temp;
   }
}
void printTree(struct Node* node) {
   if (node == NULL) {
      return;
   }
   printTree(node->left);
   cout << node->data << " ";
   printTree(node->right);
}
int main() {
   struct Node *root = newNode(1);
   root->left = newNode(2);
   root->right = newNode(3);
   root->left->left = newNode(4);
   root->left->right = newNode(5);
   cout << "Tree: ";
   printTree(root);
   cout << endl;
   convertTreeToItsMirror(root);
   cout << "Mirror of the Tree: ";
   printTree(root);
   cout << endl;
   return 0;
}

ผลลัพธ์

หากคุณเรียกใช้โค้ดด้านบน คุณจะได้ผลลัพธ์ดังต่อไปนี้

Tree: 4 2 5 1 3
Mirror of the Tree: 3 1 5 2 4

บทสรุป

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