leetcode 균형 트리 판단

1166 단어 두 갈래 나무
문제 설명:
https://oj.leetcode.com/problems/balanced-binary-tree/클릭하여 링크 열기
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.
예제 코드:
/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    bool isBalanced(TreeNode *root) 
    {
        if (!root) return true;
        int lh = height(root->left);
        int rh = height(root->right);
        int diff = lh > rh ? lh - rh : rh - lh;
        if (diff > 1) return false;
        return isBalanced(root->left) && isBalanced(root->right);
    }
    int height(TreeNode *root)   
    {  
        if (!root) return 0;  
        int lh = height(root->left);  
        int rh = height(root->right);  
        return lh > rh ? lh + 1 : rh + 1;  
    }  
};

이 문제는 최적화할 수 있는 점이 있다. 불필요한 귀속을 하고 고도를 계산하는 것과 좌우자 나무의 판정이 합쳐질 수 있을까?

좋은 웹페이지 즐겨찾기