Lowest Common Ancestor of a Binary Tree

ㅋㅋ·2022년 7월 26일
0

알고리즘-leetcode

목록 보기
32/135

트리의 root와 p, q 트리 노드를 받는다.

p와 q의 공통 조상인 트리 노드를 찾는 문제이다.

/**
 * 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 == nullptr || root == p || root == q)
        {
            return root;
        }
        
        TreeNode* left = lowestCommonAncestor(root->left, p, q);
        TreeNode* right = lowestCommonAncestor(root->right, p, q);
        
        if (left && right)
        {
            return root;
        }
        else if (left)
        {
            return left;
        }
        
        return right;
    }
};

0개의 댓글