当前位置:网站首页>[LeetCode]剑指 Offer 55 - I. 二叉树的深度
[LeetCode]剑指 Offer 55 - I. 二叉树的深度
2022-08-02 15:41:00 【Spring-_-Bear】
输入一棵二叉树的根节点,求该树的深度。从根节点到叶节点依次经过的节点(含根、叶节点)形成树的一条路径,最长路径的长度为树的深度。
例如:
给定二叉树 [3,9,20,null,null,15,7],
3
/ \
9 20
/ \
15 7
返回它的最大深度 3 。
提示:
节点总数 <= 10000
题解一:
/** * 剑指 Offer 55 - I. 二叉树的深度 * 树的深度优先遍历 */
public int maxDepth(TreeNode root) {
return root == null ? 0 : Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
}
题解二:
/** * 剑指 Offer 55 - I. 二叉树的深度 * 树的广度优先遍历(层次遍历) */
public int maxDepth(TreeNode root) {
if (root == null) {
return depth;
}
Queue<TreeNode> queue = new LinkedList<>();
queue.add(root);
int depth = 0;
// 当队列不为空时遍历
while (!queue.isEmpty()) {
// 遍历当前层的所有元素
for (int i = queue.size(); i > 0; i--) {
TreeNode node = queue.poll();
// 将当前节点的左右孩子加到队尾
if (node.left != null) {
queue.add(node.left);
}
if (node.right != null) {
queue.add(node.right);
}
}
depth++;
}
return depth;
}
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/er-cha-shu-de-shen-du-lcof
边栏推荐
猜你喜欢
随机推荐
JZ4 二维数组中的查找
Anti-shake throttling (continue to update later)
tiup mirror rotate
JZ21 调整数组顺序使奇数位于偶数前面(一)-相对位置变化
WWW'22 推荐系统论文之序列推荐篇
【暑期集训第一周:搜索】【DFS&&BFS】
策略路由下发
【2022河南萌新联赛第(四)场:郑州轻工业大学】【部分思路题解+代码解析】
JZ40 最小的K个数
MPLS实验
24、wpf之布局(二)
JZ81 调整数组顺序使奇数位于偶数前面(二)-相对位置变化
Advanced usage of vim configuration
机械臂速成小指南(十六):带抛物线过渡的线性规划
Break the stereotype, DIY is your own unique mall
莫比乌斯反演学习笔记
CefSharp practical demonstration
第十四天笔记
动态权重之多任务不平衡论文 (二) MetaBalance
.NET性能优化-使用SourceGenerator-Logger记录日志