1. question: 二叉树的最大深度(简单)
给定一个二叉树,找出其最大深度。
二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/maximum-depth-of-binary-tree
说明: 叶子节点是指没有子节点的节点。
示例:
给定二叉树 [3,9,20,null,null,15,7],
返回它的最大深度 3 。
2. answers
这道题和层序遍历一样,在遍历的时候累加深度即可。
代码如下所示:
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| public class Solution_0020 { public static int maxDepth(TreeNode root) {
if(root == null) { return 0; }
Queue<TreeNode> queue = new LinkedList<>(); queue.offer(root); int length, depth = 0;
while(!queue.isEmpty()) {
length = queue.size();
while(length > 0) {
root = queue.poll(); if(root.left != null) { queue.offer(root.left); }
if(root.right != null) { queue.offer(root.right); }
length --; }
depth ++; }
return depth; }
public static void main(String[] args) { System.out.println();
TreeNode tn1 = new TreeNode(9);
TreeNode tn2 = new TreeNode(15); TreeNode tn3 = new TreeNode(7); TreeNode tn4 = new TreeNode(20, tn2, tn3);
TreeNode root = new TreeNode(3, tn1, tn4);
int result = maxDepth(root); System.out.println(result); } }
|
3. 备注
参考力扣(LeetCode)官网 - 全球极客挚爱的技术成长平台 (leetcode-cn.com),代码随想录 (programmercarl.com)。