[leetcode 두 갈래 나무 균형 판단]

1. 제목


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을 초과하지 않는다

2. 분석


귀속법으로 한 그루의 나무 균형의 조건: 왼쪽 나무 균형 & & 오른쪽 나무 균형 & & 왼쪽 나무 높이 차이 1 초과하지 않음

3. 코드

<span style="font-size:18px;">/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
 /* 
  : && && 1
 */
class Solution {
public:
    bool isBalanced(TreeNode *root) {
        if(!root) return true;
        return isBalanced(root->left) && isBalanced(root->right) && abs(treeDepth(root->left)-treeDepth(root->right))<2 ;
    }
private:
   int treeDepth(TreeNode *root)  //   
   {
       if(!root) return 0;
       return max(treeDepth(root->left),treeDepth(root->right))+1;
   }
};</span>

좋은 웹페이지 즐겨찾기