-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathminimum_distance_between_nodes.cpp
84 lines (76 loc) · 2 KB
/
minimum_distance_between_nodes.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
#include <iostream>
using namespace std;
// A Binary Tree Node
struct Node
{
struct Node *left, *right;
int key;
};
// Utility function to create a new tree Node
Node* newNode(int key)
{
Node *temp = new Node;
temp->key = key;
temp->left = temp->right = NULL;
return temp;
}
Node* LCA(Node * root, int n1,int n2)
{
// Your code here
if (root == NULL)
return root;
if (root->key == n1 || root->key == n2)
return root;
Node* left = LCA(root->left, n1, n2);
Node* right = LCA(root->right, n1, n2);
if (left != NULL && right != NULL)
return root;
if (left != NULL)
return LCA(root->left, n1, n2);
return LCA(root->right, n1, n2);
}
// Returns level of key k if it is present in
// tree, otherwise returns -1
void search(struct Node* root,int a,int level,int &get_level)
{
if(root==NULL)
{
return;
}
if(root->key==a)
{
get_level = level;
}
search(root->left,a,level+1,get_level);
search(root->right,a,level+1,get_level);
}
int findDistance(Node* root, int a, int b)
{
// Your code here
int level = 0;
int x,y=0;
Node* lca = LCA(root, a , b);
search(lca,a,0,x);
search(lca,b,0,y);
return x + y;
}
// Driver program to test above functions
int main()
{
// Let us create binary tree given in
// the above example
Node * root = newNode(1);
root->left = newNode(2);
root->right = newNode(3);
root->left->left = newNode(4);
root->left->right = newNode(5);
root->right->left = newNode(6);
root->right->right = newNode(7);
root->right->left->right = newNode(8);
cout << "Dist(4, 5) = " << findDistance(root, 4, 5);
cout << "\nDist(4, 6) = " << findDistance(root, 4, 6);
cout << "\nDist(3, 4) = " << findDistance(root, 3, 4);
cout << "\nDist(2, 4) = " << findDistance(root, 2, 4);
cout << "\nDist(8, 5) = " << findDistance(root, 8, 5);
return 0;
}