Leetcode 102. Binary Tree Level Order Traversal

https://leetcode.com/problems/binary-tree-level-order-traversal/

题意:二叉树的层序遍历

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* 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) {
queue<TreeNode*> q;
q.push(root);
vector<vector<int>> res;
int num = 1;
while(!q.empty()){
vector<int> arr;
int count = 0;
for(int i = 0; i < num; i++){
TreeNode* temp = q.front();
q.pop();
if(temp){
arr.push_back(temp->val);
q.push(temp->left);
q.push(temp->right);
count += 2;
}
}
if(!arr.empty())
res.push_back(arr);
num = count;
}

return res;
}
};
0%