题解 | #判断是不是平衡二叉树#
判断是不是平衡二叉树
https://www.nowcoder.com/practice/8b3b95850edb4115918ecebdf1b4d222
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * }; */ class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pRoot TreeNode类 * @return bool布尔型 */ bool isNotBBT = false; int getMaxDepth (TreeNode* root) { if (!root) return 0; int leftMaxDepth = getMaxDepth(root->left); int rightMaxDepth = getMaxDepth(root->right); int sub = leftMaxDepth > rightMaxDepth ? leftMaxDepth - rightMaxDepth : rightMaxDepth - leftMaxDepth; int max = leftMaxDepth > rightMaxDepth ? leftMaxDepth : rightMaxDepth; if (sub > 1) isNotBBT = true; return max + 1; } bool IsBalanced_Solution(TreeNode* pRoot) { // write code here getMaxDepth(pRoot); return !isNotBBT; } };
求最大深度的递归。中途加上了一个对左右子树深度的判定。(感觉这样的判断方法有些sb)