首页 > 其他 > 详细

101.对称二叉树

时间:2020-03-29 23:43:53      阅读:63      评论:0      收藏:0      [点我收藏+]

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

用bfs层次遍历,队列实现


class Solution {
public:
    bool isSymmetric(TreeNode* root) {
        if(!root) return true;
        const int MIN=-0x3f3f3f3f;
        queue<TreeNode*> q;
        q.push(root);
        while(!q.empty())
        {
            int length = q.size();
            vector<int> vis(length);
            for(int i = 0; i<length; ++i)
            {
                root = q.front();
                q.pop();
                vis[i] = (root!=NULL ? root->val : MIN);
                if(root) { q.push(root->left); q.push(root->right); }
            }
            for(int i = 0; i< length/2; ++i)
            {
                if(vis[i] != vis[length-1-i]) 
                return false;
            }
        }
        return true;
    }
};

101.对称二叉树

原文:https://www.cnblogs.com/Hunter01/p/12595356.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!