leetCode 110. Balanced Binary Tree 밸런스 트리

110. 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 a binary tree node.
     * struct TreeNode {
     *     int val;
     *     TreeNode *left;
     *     TreeNode *right;
     *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
     * };
     */
    class Solution {
    public:
        int depth(TreeNode* root)
        {
            if(!root)
                return 0;
            int l = depth(root->left) ;
            int r = depth(root->right) ;
            return 1 + ((l > r)?l:r);
        }
        bool isBalanced(TreeNode* root) {
            if(!root)
                return true;
            else
            {
                int l = depth(root->left);
                int r = depth(root->right);
                if(l + 1 left) && isBalanced(root->right) );
            }
        }
    };

    2016-08-08 00:25:26

    좋은 웹페이지 즐겨찾기