当前位置:   article > 正文

代码随想录算法训练营day16

代码随想录算法训练营day16

题目:104_二叉树的最大深度

给定一个二叉树,找出其最大深度。

二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。

说明: 叶子节点是指没有子节点的节点。

示例: 给定二叉树 [3,9,20,null,null,15,7],

104. 二叉树的最大深度

返回它的最大深度 3 。

算法思想:

空间换时间,设置辅助数组count[],下标表示层号。

前序遍历,deep记录深度 。

代码:

  1. /**
  2. * Definition for a binary tree node.
  3. * public class TreeNode {
  4. * int val;
  5. * TreeNode left;
  6. * TreeNode right;
  7. * TreeNode() {}
  8. * TreeNode(int val) { this.val = val; }
  9. * TreeNode(int val, TreeNode left, TreeNode right) {
  10. * this.val = val;
  11. * this.left = left;
  12. * this.right = right;
  13. * }
  14. * }
  15. */
  16. class Solution {
  17. int[] count = new int[10000];
  18. public int maxDepth(TreeNode root) {
  19. preorder(root, 1);
  20. int ans = 0;
  21. for (int i = 0; i < count.length; i++) {
  22. if (count[i] > 0)
  23. ans = i;
  24. }
  25. return ans;
  26. }
  27. public void preorder(TreeNode t, int deep) {
  28. if (t == null)
  29. return;
  30. count[deep]++;
  31. preorder(t.left, deep + 1);
  32. preorder(t.right, deep + 1);
  33. }
  34. }

题目:n叉树的最大高度

给定一个 n 叉树,找到其最大深度。

最大深度是指从根节点到最远叶子节点的最长路径上的节点总数。

例如,给定一个 3叉树 :

559.n叉树的最大深度

我们应返回其最大深度,3。

算法思想:

1、采用层次遍历。

每一层的结点全部弹出队列时,deep++;用for循环限制同一层结点出队。

代码:

  1. class Solution {
  2. public int maxDepth(Node root) {
  3. if(root==null) return 0;
  4. int deep = 0 ;
  5. //层次遍历
  6. Queue<Node> queue = new LinkedList<>();
  7. queue.offer(root);
  8. while(!queue.isEmpty()){
  9. deep++;
  10. int size = queue.size();
  11. for(int j=0;j<size;j++){ //每一层的结点全部弹出队列deep++
  12. root = queue.poll();
  13. for (int i = 0; i < root.children.size(); i++) {
  14. if(root.children.get(i)!=null)
  15. queue.offer(root.children.get(i));
  16. }
  17. }
  18. }
  19. return deep;
  20. }
  21. }

算法思想:

题解的做法

2、计算型,后序遍历。

左子树为空,右子树不为空,说明最小深度是 1 + 右子树的深度。

右子树为空,左子树不为空,最小深度是 1 + 左子树的深度。

最后如果左右子树都不为空,返回左右子树深度最小值 + 1 。

代码:

  1. public class Solution2 {
  2. public int minDepth(TreeNode root) {
  3. //计算型
  4. //注意:最小深度必须是到叶子结点的深度,不是到单亲结点的深度
  5. if(root==null) return 0;
  6. int left = minDepth(root.left);
  7. int right = minDepth(root.right);
  8. //如果左子树为空,右子树不为空,说明最小深度是 1 + 右子树的深度。
  9. if(root.left==null&&root.right!=null)
  10. return right+1;
  11. //右子树为空,左子树不为空,最小深度是 1 + 左子树的深度
  12. else if(root.right==null&&root.left!=null)
  13. return left+1;
  14. //最后如果左右子树都不为空,返回左右子树深度最小值 + 1
  15. return Math.min(left,right)+1;
  16. }
  17. }

题目:222_完全二叉树的结点个数

给出一个完全二叉树,求出该树的节点个数。

示例 1:

  • 输入:root = [1,2,3,4,5,6]
  • 输出:6

示例 2:

  • 输入:root = []
  • 输出:0

示例 3:

  • 输入:root = [1]
  • 输出:1

提示:

  • 树中节点的数目范围是[0, 5 * 10^4]
  • 0 <= Node.val <= 5 * 10^4
  • 题目数据保证输入的树是 完全二叉树

算法思想:

没按题解写,按我自己的 操作型 。

代码:

  1. /**
  2. * Definition for a binary tree node.
  3. * public class TreeNode {
  4. * int val;
  5. * TreeNode left;
  6. * TreeNode right;
  7. * TreeNode() {}
  8. * TreeNode(int val) { this.val = val; }
  9. * TreeNode(int val, TreeNode left, TreeNode right) {
  10. * this.val = val;
  11. * this.left = left;
  12. * this.right = right;
  13. * }
  14. * }
  15. */
  16. public class Solution {
  17. int count = 0;
  18. public int countNodes(TreeNode root) {
  19. preorder(root);
  20. return count;
  21. }
  22. public void preorder(TreeNode t){
  23. if(t==null) return ;
  24. count++;
  25. preorder(t.left);
  26. preorder(t.right);
  27. }
  28. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/135929
推荐阅读
相关标签
  

闽ICP备14008679号