LeetCode 863. All Nodes Distance K in Binary Tree

原题链接在这里:https://leetcode.com/problems/all-nodes-distance-k-in-binary-tree/

题目:

We are given a binary tree (with root node root), a target node, and an integer value K.

Return a list of the values of all nodes that have a distance K from the target node.  The answer can be returned in any order.

 

Example 1:

Input: root = [3,5,1,6,2,0,8,null,null,7,4], target = 5, K = 2

Output: [7,4,1]

Explanation: 
The nodes that are a distance 2 from the target node (with value 5)
have values 7, 4, and 1.



Note that the inputs "root" and "target" are actually TreeNodes.
The descriptions of the inputs above are just serializations of these objects.

Note:

  1. The given tree is non-empty.
  2. Each node in the tree has unique values 0 <= node.val <= 500.
  3. The target node is a node in the tree.
  4. 0 <= K <= 1000.

题解:

Clone this tree with new type of Node containing a pointer to parent.

Find the cloned target node and do BFS from it.

Time Complexity: O(n). Deep clone takes O(n). BFS takes O(n).

Time Complexity: O(n). Regardless res.

AC Java:

 1 /**
 2  * Definition for a binary tree node.
 3  * public class TreeNode {
 4  *     int val;
 5  *     TreeNode left;
 6  *     TreeNode right;
 7  *     TreeNode(int x) { val = x; }
 8  * }
 9  */
10 class Solution {
11     Node clonedTargetNode;
12     public List<Integer> distanceK(TreeNode root, TreeNode target, int K) {
13         List<Integer> res = new ArrayList<Integer>();
14         if(root == null){
15             return res;
16         }
17         
18         deepClone(root, null, target);
19         LinkedList<Node> que = new LinkedList<Node>();
20         que.add(clonedTargetNode);
21         
22         HashSet<Node> used = new HashSet<Node>();
23         used.add(clonedTargetNode);
24         while(!que.isEmpty()){
25             int size = que.size();
26             if(K==0){
27                 for(int i = 0; i<size; i++){
28                     res.add(que.poll().val);
29                 }
30                 
31                 return res;
32             }
33             
34             for(int i = 0; i<size; i++){
35                 Node cur = que.poll();
36                 if(cur.parent != null && !used.contains(cur.parent)){
37                     que.add(cur.parent);
38                     used.add(cur.parent);
39                 }
40                 
41                 if(cur.left != null && !used.contains(cur.left)){
42                     que.add(cur.left);
43                     used.add(cur.left);
44                 }
45                 
46                 if(cur.right != null && !used.contains(cur.right)){
47                     que.add(cur.right);
48                     used.add(cur.right);
49                 }
50             }
51             
52             K--;
53         }
54         
55         return res;
56     }
57     
58     private Node deepClone(TreeNode root, Node parent, TreeNode target){
59         if(root == null){
60             return null;
61         }
62         
63         Node clonedRoot = new Node(root.val);
64         if(root == target){
65             clonedTargetNode = clonedRoot;
66         }
67         
68         clonedRoot.parent = parent;
69         clonedRoot.left = deepClone(root.left, clonedRoot, target);
70         clonedRoot.right = deepClone(root.right, clonedRoot, target);
71         return clonedRoot;
72     }
73 }
74 
75 class Node{
76     int val;
77     Node parent;
78     Node left;
79     Node right;
80     Node(int x){
81         this.val = x;
82     }
83 }

 

转载于:https://www.cnblogs.com/Dylan-Java-NYC/p/11119888.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值