题解 | #对称的二叉树#
对称的二叉树
https://www.nowcoder.com/practice/ff05d44dfdb04e1d83bdbdab320efbcb
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * }; */ class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param pRoot TreeNode类 * @return bool布尔型 */ //判断两树是否是对称关系 bool recursion(TreeNode* root1, TreeNode* root2) { if (root1 == nullptr && root2 == nullptr) return true; if (root1 == nullptr && root2 != nullptr) return false; if (root1 != nullptr && root2 == nullptr) return false; if (root1 != nullptr && root2 != nullptr) { if ((root1->val == root2->val) && recursion(root1->left, root2->right) && recursion(root1->right, root2->left)) return true; else return false; } return true; } bool isSymmetrical(TreeNode* pRoot) { if(pRoot == nullptr) return true; return recursion(pRoot->left, pRoot->right); } };
构建一个回溯函数;
函数功能是判断两个树是否是对称关系;