-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiameter_of_tree.cpp
72 lines (57 loc) · 1.41 KB
/
Diameter_of_tree.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
#include <bits/stdc++.h>
using namespace std;
struct node
{
int data;
struct node *left, *right;
};
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);
}
pair <int,int> utilityDia(struct node* root)
{
pair <int , int> p,lt,rt,answer;
// first --> height
// second --> diameter
if(root == NULL)
{
p.first = -1;
p.second = 0;
return p;
}
lt = utilityDia(root->left);
rt = utilityDia(root->right);
//storing resultant height.
answer.first = max(lt.first , rt.first) + 1;
// passing through root
int dia = lt.first + rt.first + 2;
answer.second = max(dia, max(lt.second , rt.second));
return answer;
}
int diameter(struct node* root)
{
return (utilityDia(root).second + 1);
}
int height(struct node* root)
{
return (utilityDia(root).first + 1);
}
int main()
{
struct node* root = newNode(1);
root->left = newNode(2);
root->right = newNode(3);
/*root->left->right = newNode(4);
root->right->left = newNode(5);
root->right->right = newNode(6);
root->right->left ->left = newNode(7);
root->right->left ->right = newNode(8);*/
cout<<"Diameter of the given binary tree is "<<diameter(root);
cout<<"\nHeight of the given binary tree is "<<height(root);
return 0;
}