赞
踩
给定一个二叉树,检查它是否是镜像对称的。
例如,二叉树 [1,2,2,3,4,4,3]
是对称的。
1 / \ 2 2 / \ / \ 3 4 4 3
但是下面这个 [1,2,2,null,3,null,3]
则不是镜像对称的:
1 / \ 2 2 \ \ 3 3
代码展示:
- /**
- * Definition for a binary tree node.
- * struct TreeNode {
- * int val;
- * TreeNode *left;
- * TreeNode *right;
- * TreeNode(int x) : val(x), left(NULL), right(NULL) {}
- * };
- */
- class Solution {
- public:
- bool isSymmetric(TreeNode* root) {
- return isSymmetric(root,root);
- }
- bool isSymmetric(TreeNode* root1,TreeNode* root2){
- if(root1==NULL && root2==NULL)
- return true;
- if(root1==NULL || root2==NULL)
- return false;
- if(root1->val!=root2->val)
- return false;
- return isSymmetric(root1->left,root2->right)&&isSymmetric(root1->right,root2->left);
- }
- };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。