二叉树最小公共父节点

xiaoxiao2021-02-28  77

/** * 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==p || root==q){ return root; } TreeNode* left=lowestCommonAncestor(root->left,p,q); TreeNode* right=lowestCommonAncestor(root->right,p,q); if(left!=NULL && right!=NULL){ return root; } else if(left==NULL){ return right; } else{ return left; } } };
转载请注明原文地址: https://www.6miu.com/read-25745.html

最新回复(0)