zoukankan      html  css  js  c++  java
  • 代码题(7)— 二叉树的层次遍历、二叉树的锯齿形层次遍历

    1、102. 二叉树的层次遍历

    给定一个二叉树,返回其按层次遍历的节点值。 (即逐层地,从左到右访问所有节点)。

    例如:
    给定二叉树: [3,9,20,null,null,15,7],

        3
       / 
      9  20
        /  
       15   7
    

    返回其层次遍历结果:

    [
      [3],
      [9,20],
      [15,7]
    ]
    /**
     * 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 == nullptr)
                return res;
            queue<TreeNode*> qNode;
            qNode.push(root);
            TreeNode* cur = nullptr;
            while(!qNode.empty())
            {
                vector<int> temp;
                int num = qNode.size();
                for(int i=0;i<num;++i)
                {
                    cur = qNode.front();
                    temp.push_back(cur->val);
                    qNode.pop();
                    if(cur->left != nullptr)
                        qNode.push(cur->left);
                    if(cur->right != nullptr)
                        qNode.push(cur->right);
                }
           //如果从底向上输出,则通过插入的方式
           //res.insert(res.begin(), temp); res.push_back(temp); }
    return res; } };

       

    2、103. 二叉树的锯齿形层次遍历

    给定一个二叉树,返回其节点值的锯齿形层次遍历。(即先从左往右,再从右往左进行下一层遍历,以此类推,层与层之间交替进行)。

    例如:
    给定二叉树 [3,9,20,null,null,15,7],

        3
       / 
      9  20
        /  
       15   7
    

    返回锯齿形层次遍历如下:

    [
      [3],
      [20,9],
      [15,7]
    ]
    /**
     * 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>> zigzagLevelOrder(TreeNode* root) {
            vector<vector<int>> res;
            if(root == nullptr)
                return res;
            stack<TreeNode*> st1, st2;
            st1.push(root);
            while(!st1.empty() || !st2.empty())
            {
                if(!st1.empty())
                {
                    vector<int> temp;
                    while(!st1.empty())
                    {
                        TreeNode* cur = st1.top();
                        temp.push_back(cur->val);
                        st1.pop();
                        if(cur->left)
                            st2.push(cur->left);
                        if(cur->right)
                            st2.push(cur->right);
                    }
                    res.push_back(temp);
                }
                
                if(!st2.empty())
                {
                    vector<int> temp;
                    while(!st2.empty())
                    {
                        TreeNode* cur = st2.top();
                        temp.push_back(cur->val);
                        st2.pop();
                        if(cur->right)
                            st1.push(cur->right);
                        if(cur->left)
                            st1.push(cur->left);
                    }
                    res.push_back(temp);
                }
                
            }
            return res;
        }
    };
  • 相关阅读:
    写给自己的2020年总结
    docker镜像与docker容器
    docker安装&docker简介
    windows 安装linux子系统
    typora设置图床
    让Mysql插入中文
    pip 换源
    Unity中如何将一个场景(Scene)的Light Settings复制给另一个场景
    Windows API开发
    【C#】判断字符串中是否包含指定字符串,contains与indexOf方法效率问题
  • 原文地址:https://www.cnblogs.com/eilearn/p/9217615.html
Copyright © 2011-2022 走看看