Minimum Subtree

题目描述:

Given a binary tree, find the subtree with minimum sum. Return the root of the subtree.

样例:

Given a binary tree:

     1
   /   \
 -5     2
 / \   /  \
0   2 -4  -5 
return the node 1.

代码实现:

/**
 * Definition of TreeNode:
 * public class TreeNode {
 *     public int val;
 *     public TreeNode left, right;
 *     public TreeNode(int val) {
 *         this.val = val;
 *         this.left = this.right = null;
 *     }
 * }
 */
class ResultType {
    TreeNode node;
    public int sum;
    public ResultType(int sum) {
        this.sum = sum;
    }
}
public class Solution {
    /**
     * @param root the root of binary tree
     * @return the root of the minimum subtree
     */
    private TreeNode subtree = null;
    private int subtreeSum = Integer.MAX_VALUE;
    public TreeNode findSubtree(TreeNode root) {
        helper(root);
        return subtree;
    }
    private ResultType helper(TreeNode root) {
        if (root == null) {
            return new ResultType(0);
        }
        ResultType left = helper(root.left);
        ResultType right = helper(root.right);
        ResultType result = new ResultType(left.sum + right.sum + root.val);
        //int sum = helper(root.left) + helper(root.right) + root.val;
        if (result.sum < subtreeSum) {
            subtreeSum = result.sum;
            subtree = root;
        }
        return result;
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 背景 一年多以前我在知乎上答了有关LeetCode的问题, 分享了一些自己做题目的经验。 张土汪:刷leetcod...
    土汪阅读 12,790评论 0 33
  • 设置float的元素,会脱离文档流,往设置的方向进行浮动,直到遇到父级的边界或者其他的浮动元素 就会停止。 浮动的...
    没_有_人阅读 323评论 2 5
  • MySQL目前主要有以下几种索引类型:FULLTEXT,HASH,BTREE,RTREE。 全索引哈希索引二叉树索...
    4ea0af17fd67阅读 220评论 0 0
  • 对于未来的预测,总是伴随着恐惧。最近看《befyond feelings》和文章中的这些话感同身受:真正开始做功课...
    方知方行阅读 215评论 0 1