leetcode Balanced Binary Tree 문제

1795 단어 LeetCode

제목 설명


Given a binary tree, determine if it is height-balanced.
For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1.

생각


한 그루의 나무가 균형 있는 두 갈래 나무인지 판단하고 각 결점의 왼쪽 나무와 오른쪽 나무의 높이를 차례로 구하며 왼쪽 나무와 오른쪽 나무의 높이의 차이는 1을 넘지 않는다고 판단한다

코드 구현

class Solution
{
public:
    bool isBalanced(TreeNode *root)
        {
            return balancedHeight (root)>=0;
        }
        int balancedHeight (TreeNode* root)
        {
            if  (root==NULL)      return 0;
            int left=balancedHeight (root->left);
            int right=balancedHeight(root->right);

            if(left<0 || right<0 ||abs(left - right)>1)   return -1;

            return max(left,right)+1;
        } 
};

좋은 웹페이지 즐겨찾기