boolean isSymmetrical(TreeNode pRoot) { if (pRoot==null) return true; return judge(pRoot.left,pRoot.right); } public boolean judge(TreeNode root1,TreeNode root2){ if (root1==null && root2==null) return true; else if(root1==null...