#include <cstdlib> class Solution { public: //判断是不是平衡二叉树,每个子树的左右子树的高度差的绝对值不超过1 //判断左右子树的高度差 判断左子树平衡 判断右子树平衡 判断根平衡 bool IsBT(TreeNode* tree, int& dep) { if(tree == nullptr) return true; int left = 0; int right = 0; if(IsBT(tree->left,left)&&...