111.二叉樹的最小深度

111.二叉樹的最小深度 題解 ​ 當節點爲空,則樹爲一顆空樹,深度爲0.當左右子節點都爲空,則找到了葉子節點,爲最終的高度加一。當左右子節點不爲空則往下遞歸,在遞歸的過程當中高度不斷疊加。java class Solution { public int minDepth(TreeNode root) { if(root == null){ retu
相關文章
相關標籤/搜索