Minimum Depth of Binary Tree

Given a binary tree, find its minimum depth.

The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.

 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     public int minDepth(TreeNode root) {
12         if(root == null) return 0;
13         int left = minDepth(root.left);
14         int right = minDepth(root.right);
15         return (left == 0 || right == 0) ? left + right + 1: Math.min(left,right) + 1;
16     }
17 }
大道,在太极之上而不为高;在六极之下而不为深;先天地而不为久;长于上古而不为老
原文地址:https://www.cnblogs.com/GodBug/p/7392627.html