码迷,mamicode.com
首页 > 其他好文 > 详细

【树】面试题 04.04. 检查平衡性

时间:2020-05-03 16:13:29      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:roo   面试   img   false   struct   tde   binary   试题   png   

题目:

技术图片

 

 

解答:

同题目"【树】高度平衡二叉树的判定"。

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class Solution {
11 public:
12    // 求深度
13     int depthTree(TreeNode *root)
14     {
15         int depth = 0;
16         if (root)
17         {
18             int leftdepth = depthTree(root->left);
19             int rightdepth = depthTree(root->right);
20 
21             depth = leftdepth > rightdepth ? (leftdepth + 1) : (rightdepth + 1);
22         }
23         return depth;
24     }
25 
26     bool isBalanced(TreeNode* root) 
27     {
28         if (NULL == root)
29         {
30             return true;
31         }
32 
33         int leftdepth = depthTree(root->left);
34         int rightdepth = depthTree(root->right);
35 
36         if (abs(leftdepth - rightdepth) > 1)
37         {
38             return false;
39         }
40         else
41         {
42             return isBalanced(root->left) && isBalanced(root->right);
43         }
44     }
45 };

 

【树】面试题 04.04. 检查平衡性

标签:roo   面试   img   false   struct   tde   binary   试题   png   

原文地址:https://www.cnblogs.com/ocpc/p/12822275.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!