美文网首页
代码随想录算法训练营第16天|二叉树part03

代码随想录算法训练营第16天|二叉树part03

作者: pangzhaojie | 来源:发表于2023-05-27 11:02 被阅读0次

二叉树最大深度

后序递归

    public int maxDepth(TreeNode root) {
    if(root == null) {
        return 0;
    }
    return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
}

先序递归

    private int result = 0;
public int maxDepth(TreeNode root) {
    if(root == null) {
        return result;
    }
    depth(root, 1);
    return result;
}

private void depth(TreeNode node, int depth) {
    if(node.left == null && node.right == null) {
        result = Math.max(result, depth);
        return;
    }
    if(node.left != null) {
        depth(node.left, depth + 1);
    }
    if(node.right != null) {
        depth(node.right, depth + 1);
    }
} 

迭代法

    public int maxDepth(TreeNode root) {
    Queue<TreeNode> queue = new LinkedList();
    int result = 0;
if(root == null) {
    return 0;
}
queue.offer(root);
while(!queue.isEmpty()) {
    int size = queue.size();
    result++;
    while(size-- > 0) {
        TreeNode tmp = queue.poll();
        if(tmp.left != null) {
            queue.offer(tmp.left);
        }
         if(tmp.right != null) {
            queue.offer(tmp.right);
        }
    }
}
return result;
}

最小深度

后序

    public int minDepth(TreeNode root) {
    if(root == null) {
        return 0;
    }
    if(root.left == null) {
        return minDepth(root.right)  + 1;
    }
    if(root.right == null) {
        return minDepth(root.left) + 1;
    }
    return Math.min(minDepth(root.left), minDepth(root.right)) + 1;
}

先序

    private int result ;
public int minDepth(TreeNode root) {
     result = Integer.MAX_VALUE;
    if(root == null) {
        return 0;
    }
    depth(root, 1);
    return result;
}

private void depth(TreeNode node, int depth) {
    if(node.left == null && node.right == null) {
        result = Math.min(result, depth);
        return;
    }
    if(node.left != null) {
        depth(node.left, depth + 1);
    }
    if(node.right != null) {
        depth(node.right, depth + 1);
    }
} 

二叉树节点个数

    public int countNodes(TreeNode root) {
    if (root == null) return 0;
    TreeNode left = root.left;
    TreeNode right = root.right;
    int leftDepth = 0, rightDepth = 0; // 这里初始为0是有目的的,为了下面求指数方便
    while (left != null) {  // 求左子树深度
        left = left.left;
        leftDepth++;
    }
    while (right != null) { // 求右子树深度
        right = right.right;
        rightDepth++;
    }
    if (leftDepth == rightDepth) {
        return (2 << leftDepth) - 1; // 注意(2<<1) 相当于2^2,所以leftDepth初始为0
    }
    return countNodes(root.left) + countNodes(root.right) + 1;
}

相关文章

  • 【算法题】递归求二叉树深度

    二叉树的深度算法,是二叉树中比较基础的算法了。对应 LeetCode 第104题。 然后你会发现 LeetCode...

  • 数据结构之树的相关问题

    实验要求 实现二叉树的抽象数据类型 实现二叉树的建立的运算 实现二叉树的遍历运算 实现创建哈夫曼树的算法 实验代码...

  • 每日Leetcode—算法(10)

    100.相同的树 算法: 101.对称二叉树 算法: 104.二叉树的最大深度 算法: 107.二叉树的层次遍历 ...

  • 每日Leetcode—算法(11)

    110.平衡二叉树 算法: 111.二叉树的最小树深 算法: 112.路径总和 算法:

  • 我对递归的三重理解

    第一重:二叉树的先序遍历 递归代码: 第二重:从二叉树的角度理解递归算法 举例:Generate Parenthe...

  • 二叉树 for iOS (Swift篇)

    学习了二叉树的概念及二叉树算法习题后, 结合学习的知识通过代码实现一些功能。 二叉树说白了是考验程序员的递归思维,...

  • Algorithm小白入门 -- 二叉树

    二叉树二叉树构造二叉树寻找重复子树 1. 二叉树 基本二叉树节点如下: 很多经典算法,比如回溯、动态规划、分治算法...

  • 深入浅出二叉树遍历的非递归算法 2019-11-15(未经允许,

    1、二叉树遍历的递归算法 递归实现二叉树的遍历非常直观,回顾一下递归的代码: 前序遍历 中序遍历 后序遍历 他们的...

  • 二叉树的基本算法

    二叉树的基本算法 树、二叉树 的基本概念,参考数据结构算法之美-23讲二叉树基础(上):树、二叉树[https:/...

  • 二叉树的遍历

    前言 二叉树和链表在历年春招笔试中,都是重点考核对象。链表由于算法简单,一般考代码实现能力。二叉树考核遍历。 二叉...

网友评论

      本文标题:代码随想录算法训练营第16天|二叉树part03

      本文链接:https://www.haomeiwen.com/subject/bjuhedtx.html