Lowest Common Ancestor of a Binary Search Tree Posted on 2018-11-06 Descriptionhttps://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/description/ Solution123456789101112131415161718192021/** * 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); } };