LeetCode题解之Balanced Binary Tree

1、题目描述

2、问题分析

DFS。

 

3、代码

复制代码
 1   bool isBalanced(TreeNode* root) {
 2         if (root == NULL)
 3             return true;
 4         
 5         return  abs(height(root->left) - height(root->right)) <= 1 && isBalanced(root->left) && isBalanced(root->right); 
 6         
 7     }
 8     
 9     int height(TreeNode *node)
10     {
11         if (node == NULL)
12             return 0;
13         if (node->left == NULL && node->right == NULL)
14             return 1;
15         
16         return 1 + max(height(node->left), height(node->right));
17         
18     }
19     
复制代码

 

posted @   山里的小勇子  阅读(119)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示