程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> [LeetCode從零單刷]Balanced Binary Tree

[LeetCode從零單刷]Balanced Binary Tree

編輯:關於C++

題目:

 

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。如果大於 1,可以記錄數高為特殊高度(-1),逐層向上傳遞 -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 treeDepth(TreeNode* root)
    {
        if(root == NULL)
            return 0;
        else
        {
            int ldepth  = treeDepth(root->left);
            int rdepth  = treeDepth(root->right);
            if(ldepth == -1 || rdepth == -1)    return -1;
            
            int diff    = fabs(ldepth - rdepth);
            if(diff > 1)    return -1;
            else
            {
                return ((ldepth > rdepth)?ldepth: rdepth) + 1;
            }
        }
    }
    
    bool isBalanced(TreeNode* root) {
        int ans = treeDepth(root);
        if(ans == -1)   return false;
        else            return true;
    }
};

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved