/* function TreeNode(x) { this.val = x; this.left = null; this.right = null; } */ function IsBalanced_Solution(pRoot) { // write code here //判断空树 if(!pRoot){ return true; } let pleft=getMaxDepth(pRoot.left); let pright=getMaxDepth(pRoot.right); if(Math...