leetcode 104. 二叉樹的最大深度

題目 思路 遞歸:每一次遞歸,返回當前節點的左孩子和右孩子的最大深度,深度用當前深度+1做爲參數傳遞。java 看到評論區的一種超簡潔解法,記錄一下:node class Solution { public int maxDepth(TreeNode root) { return root == null ? 0 : Math.max(maxDepth(root.left)
相關文章
相關標籤/搜索