Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).

For example, this binary tree is symmetric:
LeetCode(101)Symmetric Tree
But the following is not:
LeetCode(101)Symmetric Tree
Note:
Bonus points if you could solve it both recursively and iteratively.

confused what “{1,#,2,3}” means? > read more on how binary tree is serialized on OJ.

分析

判断一棵二叉树是否为对称树;

仍然采用递归的思想,判断该树的左右子树是否对称;

若二叉树p与二叉树q对称,也就是说其根节点相同,p左子树应与q右子树对称,同理,p右子树应与q左子树对称;

AC代码

/**
 * 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) {
        if (!root)
            return true;
        else
            //判断左右子树是否对称
            return isSymmetricTree(root->left, root->right);
    }

    bool isSymmetricTree(TreeNode* p, TreeNode* q) {
        //如果两个二叉树均为空,则返回true
        if (!p && !q)
        {
            return true;
        }
        //如果两者其一为空树,则返回false
        else if (!p || !q)
        {
            return false;
        }
        else{
            if (p->val != q->val)
                return false;
            else
                //p左子树应与q右子树对称,同理,p右子树应与q左子树对称
                return isSymmetricTree(p->left, q->right) && isSymmetricTree(p->right, q->left);
        }
    }
};

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-08
  • 2021-10-01
  • 2022-01-05
猜你喜欢
  • 2021-06-23
  • 2021-08-30
  • 2021-11-09
  • 2021-11-29
  • 2021-11-28
  • 2022-03-02
相关资源
相似解决方案