题目:
解答:
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 int maxDepth(TreeNode *root) 13 { 14 if (NULL == root) 15 { 16 return 0; 17 } 18 19 int maxdepth = std::max(maxDepth(root->left), maxDepth(root->right)) + 1; 20 21 return maxdepth; 22 } 23 bool isBalanced(TreeNode* root) 24 { 25 if (NULL == root) 26 { 27 return true; 28 } 29 30 int leftdepth = maxDepth(root->left); 31 int rightdepth = maxDepth(root->right); 32 33 if (std::abs(leftdepth - rightdepth) > 1) 34 { 35 return false; 36 } 37 else 38 { 39 return isBalanced(root->left) && isBalanced(root->right); 40 } 41 } 42 };
原文:https://www.cnblogs.com/ocpc/p/12859600.html