練習題之二叉樹的深度

題目:this 輸入一棵二叉樹,求該樹的深度。從根結點到葉結點依次通過的結點(含根、葉結點) 造成樹的一條路徑,最長路徑的長度爲樹的深度。 代碼實現:code /** public class TreeNode { int val = 0; TreeNode left = null; TreeNode right = null; public TreeNode(i
相關文章
相關標籤/搜索