-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path863. All Nodes Distance K in Binary Tree.cpp
75 lines (72 loc) · 1.8 KB
/
863. All Nodes Distance K in Binary Tree.cpp
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
* 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:
unordered_map<int, TreeNode *> par;
unordered_map<int, bool> vis;
vector<int> res;
vector<int> distanceK(TreeNode *root, TreeNode *target, int k)
{
if (root == NULL)
return res;
storeParent(root, NULL);
queue<TreeNode *> q;
int level = 0;
q.push(target);
while (!q.empty())
{
vector<int> tempRes;
int sz = q.size();
while (sz > 0)
{
TreeNode *frnt = q.front();
vis[frnt->val] = true;
q.pop();
tempRes.push_back(frnt->val);
if (frnt->left && vis[frnt->left->val] == false)
{
q.push(frnt->left);
}
if (frnt->right && vis[frnt->right->val] == false)
{
q.push(frnt->right);
}
if (par[frnt->val] != NULL && vis[par[frnt->val]->val] == false)
{
q.push(par[frnt->val]);
}
sz--;
}
if (level == k)
{
res = tempRes;
break;
}
level++;
}
return res;
}
void storeParent(TreeNode *root, TreeNode *parent)
{
if (root == NULL)
return;
if (parent == NULL)
{
par[root->val] = NULL;
}
else
{
par[root->val] = parent;
}
storeParent(root->left, root);
storeParent(root->right, root);
}
};