-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmirror.cpp
More file actions
69 lines (55 loc) · 1.15 KB
/
mirror.cpp
File metadata and controls
69 lines (55 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include<bits/stdc++.h>
using namespace std;
struct node{
int data;
node*left;
node*right;
};
node * new_node(int num)
{
node*temp = new node();
temp->left=NULL;
temp->right=NULL;
temp->data= num;
return temp;
}
void print(node*root)
{
if(root==NULL)
{
return;
}
cout<<root->data<<" ";
print(root->left);
print(root->right);
}
void mirror(node*root)
{
node*temp;
if(root==NULL)
{
return;
}
mirror(root->left);
mirror(root->right);
temp = root->left;
root->left= root->right;
root->right = temp;
}
int main()
{
node*root = new_node(1);
root->left= new_node(3);
root->right=new_node(2);
root->left->left=new_node(7);
root->left->right=new_node(6);
root->right->left=new_node(5);
root->right->right=new_node(4);
root->left->left->left=new_node(10);
root->right->left->left=new_node(9);
root->right->left->right=new_node(8);
print(root);
cout<<"After mirror"<<endl;
mirror(root);
print(root);
}