-
Notifications
You must be signed in to change notification settings - Fork 0
/
binarytree.cpp
94 lines (80 loc) · 1.32 KB
/
binarytree.cpp
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include<bits/stdc++.h>
using namespace std;
struct node{
int data;
node*left;
node*right;
};
struct node*new_node(int num)
{
node*temp=new node();
temp->left=NULL;
temp->right=NULL;
temp->data=num;
};
void print(struct node*root)
{
if(root==NULL)
{
return;
}
cout<<root->data<<" ";
print(root->left);
print(root->right);
}
int size(node*root)
{
if(root==NULL)
{
return 0;
}
return (size(root->left)+size(root->right)+1);
}
int height(node*root)
{
if(root==NULL)
{
return 0;
}
return (max(height(root->left),height(root->right))+1);
}
int leaf(node*root)
{
if(root==NULL)
{
return 0;
}
if(root->left==NULL&&root->right==NULL)
{
return 1;
}
return (leaf(root->left)+leaf(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()
{
struct node *root = new_node(1);
root->left=new_node(2);
root->right=new_node(3);
root->left->left=new_node(4);
print(root);
// cout<<size(root);
//cout<<height(root)<<" ";
//cout<<leaf(root)<<endl;
mirror(root);
print(root);
// getchar();
return 0;
}