104. 二叉树的最大深度/面试题55 - I. 二叉树的深度(简单)
给定一个二叉树,找出其最大深度。
二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。
说明: 叶子节点是指没有子节点的节点。
示例:
给定二叉树 [3,9,20,null,null,15,7],
返回它的最大深度 3 。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/maximum-depth-of-binary-tree
思路:
这题属于简单题,常规解法用递归最简单,还有用自定义栈实现(DFS)
回看记录20.05.19
添加栈实现
代码1:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
class Solution { public int maxDepth(TreeNode root) { if(root == null) return 0; int leftMaxDepth = maxDepth(root.left); int rightMaxDepth = maxDepth(root.right); return Math.max(leftMaxDepth,rightMaxDepth)+1; } }
class Solution { public int maxDepth(TreeNode root) { return root == null ? 0 : Math.max(maxDepth(root.left), maxDepth(root.right)) + 1; } }
|
代码2:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
class Solution { public int maxDepth(TreeNode root) { if(root==null) return 0; int depth = 0; Stack<Pair<TreeNode,Integer>> stack = new Stack<>(); stack.push(new Pair<>(root,1)); while(!stack.isEmpty()) { Pair<TreeNode, Integer> node = stack.pop(); TreeNode key = node.getKey(); Integer value = node.getValue(); if(key!=null){ depth = Math.max(value, depth); stack.push(new Pair<>(key.right,value+1)); stack.push(new Pair<>(key.left,value+1));
} } return depth; } }
|