1. 程式人生 > >劍指offer---從上往下打印二叉樹

劍指offer---從上往下打印二叉樹

cnblogs == oot div from ack () emp off

/*
struct TreeNode {
    int val;
    struct TreeNode *left;
    struct TreeNode *right;
    TreeNode(int x) :
            val(x), left(NULL), right(NULL) {
    }
};*/
class Solution 
{
public:
    
    vector<int> PrintFromTopToBottom(TreeNode* root) 
    {
        queue<TreeNode*> Q;
        vector
<int> result; if (root == NULL) return result; Q.push(root); while (!Q.empty()) { TreeNode* p = Q.front(); result.push_back(p->val); Q.pop(); if (p->left != NULL) { Q.push(p->left); }
if (p->right != NULL) { Q.push(p->right); } } return result; } };

劍指offer---從上往下打印二叉樹