LeetCode 111 Minimum Depth of Binary Tree

1. 2. class Solution { public int minDepth(TreeNode root) { if(root==null){ return 0; } if(root.left==null){ return minDepth(root.right)+1;
相關文章
相關標籤/搜索