C++實現LeetCode(101.判斷對稱樹)

[LeetCode] 101.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.

判斷二叉樹是否是平衡樹,比如有兩個節點n1, n2,我們需要比較n1的左子節點的值和n2的右子節點的值是否相等,同時還要比較n1的右子節點的值和n2的左子結點的值是否相等,以此類推比較完所有的左右兩個節點。我們可以用遞歸和迭代兩種方法來實現,寫法不同,但是算法核心都一樣。

解法一:

class Solution {
public:
    bool isSymmetric(TreeNode *root) {
        if (!root) return true;
        return isSymmetric(root->left, root->right);
    }
    bool isSymmetric(TreeNode *left, TreeNode *right) {
        if (!left && !right) return true;
        if (left && !right || !left && right || left->val != right->val) return false;
        return isSymmetric(left->left, right->right) && isSymmetric(left->right, right->left);
    }
    
};

迭代寫法需要借助兩個隊列queue來實現,我們首先判空,如果root為空,直接返回true。否則將root的左右兩個子結點分別裝入兩個隊列,然後開始循環,循環條件是兩個隊列都不為空。在while循環中,我們首先分別將兩個隊列中的隊首元素取出來,如果兩個都是空結點,那麼直接跳過,因為我們還沒有比較完,有可能某個結點沒有左子結點,但是右子結點仍然存在,所以這裡隻能continue。然後再看,如果有一個為空,另一個不為空,那麼此時對稱性已經被破壞瞭,不用再比下去瞭,直接返回false。若兩個結點都存在,但是其結點值不同,這也破壞瞭對稱性,返回false。否則的話將node1的左子結點和右子結點排入隊列1,註意這裡要將node2的右子結點和左子結點排入隊列2,註意順序的對應問題。最後循環結束後直接返回true,這裡不必再去check兩個隊列是否同時為空,因為循環結束後隻可能是兩個隊列均為空的情況,其他情況比如一空一不空的直接在循環內部就返回false瞭,參見代碼如下:

解法二:

class Solution {
public:
    bool isSymmetric(TreeNode* root) {
        if (!root) return true;
        queue<TreeNode*> q1, q2;
        q1.push(root->left);
        q2.push(root->right);
        while (!q1.empty() && !q2.empty()) {
            TreeNode *node1 = q1.front(); q1.pop();
            TreeNode *node2 = q2.front(); q2.pop();
            if (!node1 && !node2) continue;
            if((node1 && !node2) || (!node1 && node2)) return false;
            if (node1->val != node2->val) return false;
            q1.push(node1->left);
            q1.push(node1->right);
            q2.push(node2->right);
            q2.push(node2->left);
        }
        return true;
    }
};

參考資料:

https://leetcode.com/problems/symmetric-tree/

https://leetcode.com/problems/symmetric-tree/discuss/33054/Recursive-and-non-recursive-solutions-in-Java

到此這篇關於C++實現LeetCode(101.判斷對稱樹)的文章就介紹到這瞭,更多相關C++實現判斷對稱樹內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: