zoukankan      html  css  js  c++  java
  • LeetCode 865. Smallest Subtree with all the Deepest Nodes

    原题链接在这里:https://leetcode.com/problems/smallest-subtree-with-all-the-deepest-nodes/

    题目:

    Given a binary tree rooted at root, the depth of each node is the shortest distance to the root.

    A node is deepest if it has the largest depth possible among any node in the entire tree.

    The subtree of a node is that node, plus the set of all descendants of that node.

    Return the node with the largest depth such that it contains all the deepest nodes in its subtree.

    Example 1:

    Input: [3,5,1,6,2,0,8,null,null,7,4]
    Output: [2,7,4]
    Explanation:
    
    
    
    We return the node with value 2, colored in yellow in the diagram.
    The nodes colored in blue are the deepest nodes of the tree.
    The input "[3, 5, 1, 6, 2, 0, 8, null, null, 7, 4]" is a serialization of the given tree.
    The output "[2, 7, 4]" is a serialization of the subtree rooted at the node with value 2.
    Both the input and output have TreeNode type.

    Note:

    • The number of nodes in the tree will be between 1 and 500.
    • The values of each node are unique.

    题解:

    If both sides have deepest nodes, return root. If only left side has deepest nodes, return left side result. Vice versa.

    To check if one side has deepest nodes, calculate the deepest depth of that side.

    If left deepest depth == right deepest depth, then both sides have deepest nodes, return root.

    If left deepest depth > right deepest depth, then only left side has deepest node, return the result node from left side.

    Time Complexity: O(n).

    Space: O(h). stack space.

    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 import javafx.util.Pair;
    11 
    12 class Solution {
    13     public TreeNode subtreeWithAllDeepest(TreeNode root) {
    14         Pair<Integer, TreeNode> res = dfs(root);
    15         return res.getValue();
    16     }
    17     
    18     private Pair<Integer, TreeNode> dfs(TreeNode root){
    19         if(root == null){
    20             return new Pair(0, null);
    21         }
    22         
    23         Pair<Integer, TreeNode> left = dfs(root.left);
    24         Pair<Integer, TreeNode> right = dfs(root.right);
    25         
    26         int lDepth = left.getKey();
    27         int rDepth = right.getKey();
    28         int deepestDepth = Math.max(lDepth, rDepth)+1;
    29         if(lDepth < rDepth){
    30             return new Pair(deepestDepth, right.getValue());
    31         }else if(lDepth > rDepth){
    32             return new Pair(deepestDepth, left.getValue());
    33         }else{
    34             return new Pair(deepestDepth, root);
    35         }
    36     }
    37         
    38 }

    类似Lowest Common Ancestor of a Binary Tree.

  • 相关阅读:
    Jdk1.7 与 jdk1.8的区别,最新的特征有哪些(美团,360,京东面试题目)
    Android利用zxing生成二维码
    Android 事件传递机制
    Android 如何让EditText不自动获取焦点&隐藏软键盘
    Android--控件的滑动事件
    解决Android3.0之后不能在主线程中进行HTTP请求
    JavaIO 思维导图
    MySQL的注释方法
    MySQL——约束(constraint)详解
    自动回复之实现随机回复与常用Mapper XML标签
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/11150552.html
Copyright © 2011-2022 走看看