ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

1469. Find All The Lonely Nodes 独生子女节点

2021-07-19 09:33:13  阅读:461  来源: 互联网

标签:node Lonely Example lonely 1469 Nodes null root nodes


In a binary tree, a lonely node is a node that is the only child of its parent node. The root of the tree is not lonely because it does not have a parent node.

Given the root of a binary tree, return an array containing the values of all lonely nodes in the tree. Return the list in any order.

 

Example 1:

Input: root = [1,2,3,null,4]
Output: [4]
Explanation: Light blue node is the only lonely node.
Node 1 is the root and is not lonely.
Nodes 2 and 3 have the same parent and are not lonely.

Example 2:

Input: root = [7,1,4,6,null,5,3,null,null,null,null,null,2]
Output: [6,2]
Explanation: Light blue nodes are lonely nodes.
Please remember that order doesn't matter, [2,6] is also an acceptable answer.

Example 3:

Input: root = [11,99,88,77,null,null,66,55,null,null,44,33,null,null,22]
Output: [77,55,33,66,44,22]
Explanation: Nodes 99 and 88 share the same parent. Node 11 is the root.
All other nodes are lonely.

Example 4:

Input: root = [197]
Output: []

Example 5:

Input: root = [31,null,78,null,28]
Output: [78,28]

怎么判断父母节点啊:利用了形态上的特殊性
有左节点的话,右节点就为空。所以其实也就是摆弄一下左右的关系。

 

参考:https://leetcode.com/problems/find-all-the-lonely-nodes/discuss/669635/Java-recursive-top-down-as-parent-passes-isLonely-to-each-children

 

public List<Integer> getLonelyNodes(TreeNode root) {
    List<Integer> nodes = new ArrayList<>();
    getLonelyNodes(root, false, nodes); // root is not lonely
    return nodes;
}
private void getLonelyNodes(TreeNode root, boolean isLonely, List<Integer> nodes) {
    if (root == null) return;
    
    if (isLonely) {
        nodes.add(root.val);
    }
    
    getLonelyNodes(root.left, root.right == null, nodes);
    getLonelyNodes(root.right, root.left == null, nodes);
}

 

 

 
 

标签:node,Lonely,Example,lonely,1469,Nodes,null,root,nodes
来源: https://www.cnblogs.com/immiao0319/p/15028731.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有