//递归 #include <stdbool.h> bool Judge(struct TreeNode* left, struct TreeNode* right); bool isSymmetrical(struct TreeNode* pRoot ) { // write code here if(pRoot == NULL) return true; return Judge(pRoot->left, pRoot->right); } bool Judge(struct TreeNode* left, struct TreeNode* right){ if(le...