码迷,mamicode.com
首页 > 其他好文 > 详细

Minimum Depth of Binary Tree

时间:2014-10-21 21:29:04      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   java   for   2014   on   log   amp   

题目:给定一颗二叉树,求出这颗二叉树的最小高度

算法:深度优先算法

/**
 * Definition for binary tree
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    private int minimumDepth = 0x3fffffff;
    
    public int minDepth(TreeNode root) {
        if (root == null) {
            return 0;
        }
        
        dfs(root, 1);
        return minimumDepth;
    }
    
    public void dfs(TreeNode node, int sum) {
        if (node.left==null && node.right==null) {
            if (sum < minimumDepth) {
                minimumDepth = sum;
            }
            return ;
        }
        
        if (node.left != null) {
            dfs(node.left, sum+1);
        }
        if (node.right != null) {
            dfs(node.right, sum+1);
        }
    }
}

Minimum Depth of Binary Tree

标签:blog   io   ar   java   for   2014   on   log   amp   

原文地址:http://blog.csdn.net/yeweiouyang/article/details/40351945

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!