111. Minimum Depth of Binary Tree
Posted warmland
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了111. Minimum Depth of Binary Tree相关的知识,希望对你有一定的参考价值。
和depth比较像
1 public int minDepth(TreeNode root) { 2 if(root == null) { 3 return 0; 4 } 5 if(root.left == null) { 6 return minDepth(root.right) + 1; 7 } 8 if(root.right == null) { 9 return minDepth(root.left) + 1; 10 } 11 return Math.min(minDepth(root.left), minDepth(root.right)) + 1; 12 }
以上是关于111. Minimum Depth of Binary Tree的主要内容,如果未能解决你的问题,请参考以下文章
111. Minimum Depth of Binary Tree
111.minimum depth of binary tree(E)
111. Minimum Depth of Binary Tree
111. Minimum Depth of Binary Tree