LintCode 69. 二叉树的层次遍历

Posted zslhg903

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LintCode 69. 二叉树的层次遍历相关的知识,希望对你有一定的参考价值。

题目:给出一棵二叉树,返回其节点值的层次遍历(逐层从左往右访问)

 

样例

给一棵二叉树 {3,9,20,#,#,15,7} :

  3
 / 9  20
  /   15   7

返回他的分层遍历结果:

[
  [3],
  [9,20],
  [15,7]
]
挑战 

挑战1:只使用一个队列去实现它

挑战2:用DFS算法来做

 

 

解:用队列

/**
 * Definition of TreeNode:
 * class TreeNode {
 * public:
 *     int val;
 *     TreeNode *left, *right;
 *     TreeNode(int val) {
 *         this->val = val;
 *         this->left = this->right = NULL;
 *     }
 * }
 */


class Solution {
public:
    /*
     * @param root: A Tree
     * @return: Level order a list of lists of integer
     */
    vector<vector<int>> levelOrder(TreeNode * root) {
        vector<vector<int>> res;
        if(root==NULL) return res;
        
        queue<TreeNode*> q;
        q.push(root);
        int sz;
        while(!q.empty())
        {
            vector<int> temp;
            sz=q.size();
            while(sz--)
            {
                TreeNode *fNode=q.front();
                temp.push_back(fNode->val);
                q.pop();
                if(fNode->left!=NULL)
                {
                    q.push(fNode->left);
                }
                if(fNode->right!=NULL)
                {
                    q.push(fNode->right);
                }
            }
            res.push_back(temp);
        }
        return res;
    }
};

 

以上是关于LintCode 69. 二叉树的层次遍历的主要内容,如果未能解决你的问题,请参考以下文章

代码题— 二叉树的层次遍历

LintCode 二叉树的中序遍历

lintcode:二叉树的所有路径

LintCode 二叉树的后序遍历

LintCode 二叉树的前序遍历

LintCode 67. 二叉树的中序遍历