leetcode 102. 二叉树的层次遍历

题目描述:

 

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

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

    3
   / \
  9  20
    /  \
   15   7

返回其层次遍历结果:

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

代码:

class Solution {
public:
    vector> levelOrder(TreeNode* root) {
        vector>ans;
        if(root==NULL)return ans;
        queueq;
        q.push(root);
        while(!q.empty()){
            queueqt;
            vectorres;
            while(!q.empty()){
                TreeNode *t=q.front();q.pop();
                res.push_back(t->val);
                if(t->left)qt.push(t->left);
                if(t->right)qt.push(t->right);
            }
            ans.push_back(res);
            q=qt;
        }
        return ans;
    }
};

 

你可能感兴趣的:(leetcode,算法编程)