题解 | #判断是不是完全二叉树#

判断是不是完全二叉树

https://www.nowcoder.com/practice/8daa4dff9e36409abba2adbe413d6fae

/**
 * struct TreeNode {
 *  int val;
 *  struct TreeNode *left;
 *  struct TreeNode *right;
 *  TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 * };
 */
#include <iterator>
#include <queue>
class Solution {
  public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param root TreeNode类
     * @return bool布尔型
     */
    bool isCompleteTree(TreeNode* root) {
        // write code here
        queue<TreeNode*> fatherNodes, childNodes;
        fatherNodes.push(root);
        bool flag = false; // 是否遇到空的节点?
        while (!fatherNodes.empty()) {
            if (fatherNodes.front()->left != nullptr) {
                if (flag) {
                    return false;
                }
                childNodes.push(fatherNodes.front()->left);
            } else {
                flag = true;
            }
           
            if (fatherNodes.front()->right != nullptr) {
                if (flag) {
                    return false;
                }
                childNodes.push(fatherNodes.front()->right);
            } else {
                flag = true;
            }
            fatherNodes.pop();
            if (fatherNodes.empty()) {
                while (!childNodes.empty()) {
                    fatherNodes.push(childNodes.front());
                    childNodes.pop();
                }
            }
        }
        return true;
    }
};

在线编程练习 文章被收录于专栏

C++在线编程练习题解

全部评论

相关推荐

09-05 21:54
已编辑
湖南工程学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务