经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 程序设计 » C++ » 查看文章
C++实现LeetCode(104.二叉树的最大深度)
来源:jb51  时间:2021/7/21 18:16:26  对本文有异议

[LeetCode] 104. Maximum Depth of Binary Tree 二叉树的最大深度

Given a binary tree, find its maximum depth.

The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.

Note: A leaf is a node with no children.

Example:

Given binary tree [3,9,20,null,null,15,7],

    3
/ \
9  20
/  \
15   7

return its depth = 3.

求二叉树的最大深度问题用到深度优先搜索 Depth First Search,递归的完美应用,跟求二叉树的最小深度问题原理相同,参见代码如下:

C++ 解法一:

  1. class Solution {
  2. public:
  3. int maxDepth(TreeNode* root) {
  4. if (!root) return 0;
  5. return 1 + max(maxDepth(root->left), maxDepth(root->right));
  6. }
  7. };

Java 解法一:

  1. public class Solution {
  2. public int maxDepth(TreeNode root) {
  3. return root == null ? 0 : (1 + Math.max(maxDepth(root.left), maxDepth(root.right)));
  4. }
  5. }

我们也可以使用层序遍历二叉树,然后计数总层数,即为二叉树的最大深度,注意 while 循环中的 for 循环的写法有个 trick,一定要将 q.size() 放在初始化里,而不能放在判断停止的条件中,因为q的大小是随时变化的,所以放停止条件中会出错,参见代码如下:

C++ 解法二:

  1. class Solution {
  2. public:
  3. int maxDepth(TreeNode* root) {
  4. if (!root) return 0;
  5. int res = 0;
  6. queue<TreeNode*> q{{root}};
  7. while (!q.empty()) {
  8. ++res;
  9. for (int i = q.size(); i > 0; --i) {
  10. TreeNode *t = q.front(); q.pop();
  11. if (t->left) q.push(t->left);
  12. if (t->right) q.push(t->right);
  13. }
  14. }
  15. return res;
  16. }
  17. };

Java 解法二:

  1. public class Solution {
  2. public int maxDepth(TreeNode root) {
  3. if (root == null) return 0;
  4. int res = 0;
  5. Queue<TreeNode> q = new LinkedList<>();
  6. q.offer(root);
  7. while (!q.isEmpty()) {
  8. ++res;
  9. for (int i = q.size(); i > 0; --i) {
  10. TreeNode t = q.poll();
  11. if (t.left != null) q.offer(t.left);
  12. if (t.right != null) q.offer(t.right);
  13. }
  14. }
  15. return res;
  16. }
  17. }

Github 同步地址:

https://github.com/grandyang/leetcode/issues/104

类似题目:

Balanced Binary Tree

Minimum Depth of Binary Tree

Maximum Depth of N-ary Tree

参考资料:

https://leetcode.com/problems/maximum-depth-of-binary-tree/

https://leetcode.com/problems/maximum-depth-of-binary-tree/discuss/34207/my-code-of-c-depth-first-search-and-breadth-first-search

到此这篇关于C++实现LeetCode(104.二叉树的最大深度)的文章就介绍到这了,更多相关C++实现二叉树的最大深度内容请搜索w3xue以前的文章或继续浏览下面的相关文章希望大家以后多多支持w3xue!

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号