我不明白我的寻找二叉树最小深度的解决方案如何不起作用?我究竟做错了什么?
如果你好奇,这里有一个问题的链接:https : //leetcode.com/problems/minimum-depth-of-binary-tree/submissions/
public int minDepth(TreeNode root) {
if(root == null) return 0;
int left = minDepth(root.left);
int right = minDepth(root.right);
int ans = Math.min(left, right) + 1;
return ans;
}
月关宝盒
相关分类