Posted on

Description

Submission

/**
 * 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 == NULL) return true;
        return isMirror(root->left, root->right);
    }

private:
    bool isMirror(TreeNode* p, TreeNode* q) {
        if(!p && !q) {
            return true;
        }

        if(!p || !q) {
            return false;
        }

        if(p->val == q->val) {
            return isMirror(p->left, q->right) && isMirror(p->right, q->left);
        }

        return false;
    }
};

Leave a Reply

Your email address will not be published. Required fields are marked *