LeetCode题解之Balanced Binary Tree
Posted 山里的小勇子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于LeetCode题解之Balanced Binary Tree的主要内容,如果未能解决你的问题,请参考以下文章
[Leetcode] Balanced Binary Tree
leetcode算法:Trim a Binar Search Tree
Leetcode[110]-Balanced Binary Tree
LeetCode(110): Balanced Binary Tree