Fork me on GitHub

Lowest Common Ancestor of a Binary Search Tree

Description

https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/description/

Solution

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q) {
if (root == NULL) return NULL;
if ( (root->val <= p->val && root->val >= q->val) ||
(root->val <= q->val && root->val >= p->val)) return root;

if (root->val < p->val) return lowestCommonAncestor(root->right, p, q);
return lowestCommonAncestor(root->left, p, q);
}

};