第78题 Binary Tree Level Order Traversal

来源:互联网 发布:域名的价格top 编辑:程序博客网 时间:2024/06/13 02:28

Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).

For example:
Given binary tree {3,9,20,#,#,15,7},

    3   / \  9  20    /  \   15   7

return its level order traversal as:

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

confused what "{1,#,2,3}" means? > read more on how binary tree is serialized on OJ.

Hide Tags
 Tree Breadth-first Search



















Solution in C++:
/** * 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>> result;        if(root==NULL) return result;        queue<TreeNode*> q;        q.push(root);        int numChildren = 1;        while(!q.empty()){            int index = numChildren;            numChildren =0;            vector<int> curLevel;            while(index>0){                TreeNode* cur = q.front();                q.pop();                if(cur->left!=NULL){                    q.push(cur->left);                    numChildren++;                }                if(cur->right!=NULL){                    q.push(cur->right);                    numChildren++;                }                index--;                curLevel.push_back(cur->val);            }            result.push_back(curLevel);        }        return result;    }};



0 0
原创粉丝点击