-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLCA_BST.cpp
55 lines (53 loc) · 1.21 KB
/
LCA_BST.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
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
/*
l,r are in left subtree
then lca is in left subtree
if l,r are in right subtree
then lca is in right subtree
if is in left-subtree,and r is in right_subtree, then this node is lca
also if root == l || root == r then root is the lca
*/
class Solution {
public:
void swap(TreeNode** p,TreeNode** q)
{
TreeNode* temp = *p;
*p = *q;
*q = temp;
}
TreeNode* solve(TreeNode* root,TreeNode* p,TreeNode* q)
{
if(root == p || root == q)
{
return root;
}
if(root->val>p->val && root->val <q->val)
{
return root;
}
if(root->val > q->val)
{
return solve(root->left,p,q);
}
else
{
return solve(root->right,p,q);
}
}
TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q)
{
if(p->val > q->val)
{
swap(&p,&q);
}
return solve(root,p,q);
}
};