【Leetcode】Symmetric Tree

題目:

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

For example, this binary tree is symmetric:

    1
   / \
  2   2
 / \ / \
3  4 4  3

But the following is not:

    1
   / \
  2   2
   \   \
   3    3

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.


OJ's Binary Tree Serialization:

The serialization of a binary tree follows a level order traversal, where '#' signifies a path terminator where no node exists below.

Here's an example:

   1
  / \
 2   3
    /
   4
    \
     5
The above binary tree is serialized as "{1,2,3,#,#,4,#,#,5}".

解題思路:採用先序遍歷的思路對根節點的兩顆子樹進行遍歷,在遍歷的時候需要注意,左子樹的遍歷過程中,先訪左子樹的左兒子,然後訪問左子樹的右兒子;右子樹的遍歷過程中,先訪問右子樹的右兒子,再訪問右子樹的左兒子。即鏡像的對左右兩顆子樹進行比較。


遞歸代碼:

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    bool isSymmetric(TreeNode *root) {
        TreeNode *LeftSubTree=root,*RightSubTree=root;
        return PreorderTraverse(LeftSubTree,RightSubTree);
    }
    
private:
    bool PreorderTraverse(TreeNode *LeftSubTree,TreeNode *RightSubTree){
        if((LeftSubTree==nullptr)&&(RightSubTree==nullptr))return true;
        if((LeftSubTree==nullptr)||(RightSubTree==nullptr))return false;
        return (LeftSubTree->val==RightSubTree->val)&&PreorderTraverse(LeftSubTree->left,RightSubTree->right)&&PreorderTraverse(LeftSubTree->right,RightSubTree->left);
    }
};

迭代代碼:

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    bool isSymmetric(TreeNode *root) {
        stack<TreeNode *> s;
        if(root==nullptr)return true;
        s.push(root->left);
        s.push(root->right);
        while(!s.empty()){
            TreeNode *Right=s.top();s.pop();
            TreeNode *Left=s.top();s.pop();
            
            if(Left==nullptr&&Right==nullptr)continue;
            if(Left==nullptr||Right==nullptr)return false;
            
            if(Left->val==Right->val){
                s.push(Left->left);
                s.push(Right->right);
                s.push(Left->right);
                s.push(Right->left);
            }else{
                return false;
            }       
        }
        return true;
    }
};


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章