C ++
 Computer >> コンピューター >  >> プログラミング >> C ++

C++でバイナリツリーをミラーツリーに変換する


このチュートリアルでは、二分木をそのミラーツリーに変換するプログラムについて説明します。

このために、二分木が提供されます。私たちのタスクは、左端と右端の値を交換して、指定されたバイナリツリーからミラーツリーを作成することです。

#include<bits/stdc++.h>
using namespace std;
//binary tree node structure
struct Node{
   int data;
   struct Node* left;
   struct Node* right;
};
//creation of a new node with no child nodes
struct Node* newNode(int data){
   struct Node* node = (struct Node*)malloc(sizeof(struct Node));
   node->data = data;
   node->left = NULL;
   node->right = NULL;
   return(node);
}
void mirror(struct Node* node){
   if (node == NULL)
      return;
   else{
      struct Node* temp;
      //swapping the subtrees
      mirror(node->left);
      mirror(node->right);
      temp = node->left;
      node->left = node->right;
      node->right = temp;
   }
}
//printing the inorder traversal
void print_tree(struct Node* node){
   if (node == NULL)
      return;
   print_tree(node->left);
   cout << node->data << " ";
   print_tree(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);
   //printing the initial tree
   cout << "Inorder traversal of the constructed" << endl;
   print_tree(root);
   mirror(root);
   //printing the mirror tree
   cout << "\nInorder traversal of the mirror tree" << endl;
   print_tree(root);
   return 0;
}

出力

Inorder traversal of the constructed
4 2 5 1 3
Inorder traversal of the mirror tree
3 1 5 2 4

  1. C++での二分木の剪定

    バイナリツリーのヘッドノードルートがあり、さらにすべてのノードの値が0または1であるとします。1を含まないすべてのサブツリーが削除された同じツリーを見つける必要があります。したがって、ツリーが次のような場合- これを解決するには、次の手順に従います- 再帰メソッドsolve()を定義します。これにより、ノードが取得されます。メソッドは次のようになります- ノードがnullの場合、nullを返します ノードの左側:=solve(ノードの左側) ノードの権利:=solve(ノードの権利) ノードの左側がnullで、ノードの右側もnullで、ノード値が0の

  2. C++のバイナリ検索ツリーに挿入します

    二分探索木があるとします。パラメータとして指定されたノードを使用して挿入操作を実行するメソッドを1つだけ作成する必要があります。手術後も木はBSTのままであることに注意する必要があります。したがって、ツリーが次のような場合- 5を挿入すると、ツリーは-になります。 これを解決するには、次の手順に従います- このメソッドは再帰的です。これはinsert()と呼ばれ、値vを取ります。 rootがnullの場合、指定された値vでノードを作成し、それをrootにします vの場合、 ルートの左側:=insert(ルートの左側、v) ルートの右:=insert(ルートの右、v) ル