-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathShortest_Distance_Bw_Two_Nodes.cpp
More file actions
96 lines (74 loc) · 1.82 KB
/
Shortest_Distance_Bw_Two_Nodes.cpp
File metadata and controls
96 lines (74 loc) · 1.82 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
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
#include<iostream>
using namespace std;
class Node{
public:
int data;
Node* left;
Node* right;
Node(int val)
{
data = val;
left = NULL;
right = NULL;
}
};
void printBT(const std::string& prefix, const Node* node, bool isLeft)
{
if (node != nullptr)
{
std::cout << prefix;
std::cout << (isLeft ? "|--" : "L--");
std::cout << node->data << std::endl;
printBT(prefix + (isLeft ? "| " : " "), node->right, true);
printBT(prefix + (isLeft ? "| " : " "), node->left, false);
}
}
void printBT(const Node* node)
{
printBT("", node, false);
}
Node* LCA(Node* root, int n1, int n2)
{
if(root==NULL)
return NULL;
if(root->data==n1 || root->data==n2)
return root;
Node* leftlca = LCA(root->left, n1, n2);
Node* rightlca = LCA(root->right, n1, n2);
if(leftlca!=NULL && rightlca!=NULL)
return root;
if(leftlca==NULL)
return rightlca;
if(rightlca==NULL)
return leftlca;
}
int distance(Node* root, int n, int dist)
{
if(root==NULL)
return -1;
if(root->data==n)
return dist;
int left = distance(root->left, n, dist+1);
if(left!=-1)
return left;
return distance(root->right, n, dist+1);
}
int shortestDistance(Node* root, int n1, int n2)
{
Node* lca = LCA(root, n1, n2);
int d1 = distance(lca, n1,0);
int d2 = distance(lca, n2,0);
return d1+d2;
}
int main()
{
Node* root = new Node(1);
root->left = new Node(2);
root->left->left = new Node(4);
root->right = new Node(3);
root->right->left = new Node(5);
root->right->left->left = new Node(7);
root->right->right = new Node(6);
cout<<shortestDistance(root, 4,3);
return 0;
}