0%

面试题 04.03. 特定深度节点链表

面试题 04.03. 特定深度节点链表

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
38
39
40
41
42
43
44
45
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
vector<ListNode*> listOfDepth(TreeNode* tree) {
if(!tree)
return {};
queue<TreeNode*> q;
vector<ListNode*> ret;
q.push(tree);
while(!q.empty())
{
ListNode tmp;
ListNode* pseudoHead = &tmp;
for(int i = 0, j = q.size(); i < j; ++i)
{
auto p = q.front();
q.pop();
pseudoHead->next = new ListNode(p->val);
pseudoHead = pseudoHead->next;
if(p->left)
q.push(p->left);
if(p->right)
q.push(p->right);
}
ret.push_back(tmp.next);
}
return ret;
}
};