-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiameter.cpp
119 lines (83 loc) · 1.91 KB
/
diameter.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
//delete node from a tree
#include<bits/stdc++.h>
using namespace std;
class Node{
public:
int value;
Node* left;
Node* right;
Node(int v){
value = v;
left=NULL;
right=NULL;
}
};
int diameterOfTree = INT_MIN;
Node* newNode(int v){
Node* n = new Node(v);
return n;
}
void inorder(Node* root){
if(root){
inorder(root->left);
cout<<root->value<<" ";
inorder(root->right);
}
}
// printing the tree in level order traversal
void levelOrder(Node* root){
if(root==NULL)
return;
queue<Node*> q;
q.push(root);
while(!q.empty()){
Node* temp = q.front(); q.pop();
cout<<temp->value<<" ";
if(temp->left)
q.push(temp->left);
if(temp->right)
q.push(temp->right);
}
cout<<endl;
}
int height(Node *root){
if(!root)
return -1;
else{
int r_ht = height(root->right);
int l_ht = height(root->left);
return 1+max(r_ht,l_ht);
}
}
// dimeter
void diameter(Node* root){
if(!root)
return;
int rHeight = height(root->right);
int lHeight = height(root->left);
// cout<<"rHeight : "<<rHeight<<endl;
// cout<<"lHeight : "<<lHeight<<endl;
int dmtr = rHeight + lHeight + 2; // two edges from the nodes
diameterOfTree = max(dmtr,diameterOfTree);
diameter(root->right);
diameter(root->left);
// return dmtr;
}
int diameterOfBinaryTree(Node* root) {
if(!root)
return 0;
diameter(root);
return diameterOfTree;
}
int main(){
Node* root = newNode(1);
root->left = newNode(2);
root->left->right = newNode(5);
root->left->left = newNode(4);
root->right = newNode(3);
levelOrder(root);
cout<<endl;
inorder(root);
cout<<"Height : "<<height(root)<<endl;
cout<<"\nDiameter : " << diameterOfBinaryTree(root)<<endl;
}