码迷,mamicode.com
首页 > 其他好文 > 详细

剑指OFFER----面试题32

时间:2020-02-28 22:34:33      阅读:45      评论:0      收藏:0      [点我收藏+]

标签:empty   while   node   iii   span   css   tle   rev   begin   

面试题32 - I. 从上到下打印二叉树

代码:

/**
 * 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:
    vector<int> levelOrder(TreeNode* root) {
        vector<int> res;
        if (!root) return res;
        queue<TreeNode*> q;
        q.push(root);
        while (!q.empty()) {
            TreeNode* cur = q.front();
            res.push_back(cur->val);
            q.pop();
            if (cur->left != nullptr) q.push(cur->left);
            if (cur->right != nullptr) q.push(cur->right);
        }
        return res;
    }
};

 

面试题32 - II. 从上到下打印二叉树 II

代码:

/**
 * 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:
    vector<vector<int>> levelOrder(TreeNode* root) {
        vector<vector<int>> res;
        if (!root) return res;
        queue<TreeNode*> q;
        q.push(root);
        vector<int> tmp;
        while (!q.empty()) {
            int s = q.size();
            tmp.clear();
            for (int i = 0; i < s; i++) {
                TreeNode* cur = q.front();
                tmp.push_back(cur->val);
                q.pop();
                if (cur->left != nullptr) q.push(cur->left);
                if (cur->right != nullptr) q.push(cur->right);
            }
            if (!tmp.empty()) res.push_back(tmp);
        }
        return res;
    }
};

 

面试题32 - III. 从上到下打印二叉树 III

代码:

/**
 * 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:
    vector<vector<int>> levelOrder(TreeNode* root) {
        vector<vector<int>> res;
        if (!root) return res;

        queue<TreeNode*> q;
        q.push(root);
        q.push(nullptr);

        vector<int> level;
        bool zigzag = false;
        while (q.size()) {
            auto t = q.front();
            q.pop();
            if (!t) {
                if (level.empty()) break;
                if (zigzag) reverse(level.begin(), level.end());
                res.push_back(level);
                level.clear();
                q.push(nullptr);
                zigzag = !zigzag;
                continue;
            }
            level.push_back(t->val);
            if (t->left) q.push(t->left);
            if (t->right) q.push(t->right);
        }
        return res;
    }
};

 

剑指OFFER----面试题32

标签:empty   while   node   iii   span   css   tle   rev   begin   

原文地址:https://www.cnblogs.com/clown9804/p/12380475.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!