代码随想录刷题|LeetCode 104.二叉树的最大深度 559.n叉树的最大深度 111.二叉树的最小深度 222.完全二叉树的节点个数

104.二叉树的最大深度

题目链接:力扣

思路

        1、求高度使用的是后序遍历

        后序遍历:(左右中)是一种自上而下的方法,根节点想知道自己的最大告诉的时候,让左右子树去统计,左右子树让分别让自己的左右子树去统计,以此类推。叶子节点下面的空节点返回来说自己是0,叶子节点加上自己的1返回给父节点,父节点再去比较自己左右节点的最大值

       2、求深度使用的是前序遍历

        前序遍历:(中左右)是一种自上而下的方法

        但是这道题目让我们求的是二叉树的最大深度,根节点的高度其实就是二叉树的最大深度,这是这道题目的关键所在,那么我们就可以使用后序遍历求出最大深度

二叉树的最大深度

后序遍历求根的最大高度(递归法)

        第一步:确定参数类型和返回值
        第二步:确定终止条件
        第三步:确定单层的逻辑(按照左右中的顺序进行处理)

class Solution {
    public int maxDepth(TreeNode root) {

        if (root == null) {
            return 0;
        }

        int leftHeight = maxDepth(root.left); // 左子树的最大高度
        int rightHeight = maxDepth(root.right); // 右子树的最大高度
        int maxHeight = 1 + Math.max(leftHeight,rightHeight); // 得到中间节点的最大深度

        return maxHeight;

    }
}

前序遍历求最大深度(递归法)

        采取中左右的前序遍历 涉及回溯思想

class Solution {
  /**
   * 递归法(求深度法)
   */
    //定义最大深度
    int maxnum = 0;

    public int maxDepth(TreeNode root) {
        ans(root,0);
        return maxnum;
    }
    
    //递归求解最大深度
    void ans(TreeNode tr,int tmp){
        if(tr==null) return;
        tmp++;
        maxnum = maxnum<tmp?tmp:maxnum;
        ans(tr.left,tmp);
        ans(tr.right,tmp);
        tmp--;
    }
}
// 分解写法
class Solution {
    int result;

    public int maxDepth(TreeNode root) {

        result = 0;

        if (root == null) {
            return result;
        }

        getDepth(root,1);

        return result;

    }

    public void getDepth (TreeNode root, int depth) {

        result = depth > result ? depth : result; //中

        if (root.left == null && root.right == null) {
            return;
        }

        if (root.left != null) {                 // 左
            depth++;
            getDepth(root.left,depth);
            depth--;
        }

        if (root.right != null) {                 // 右
            depth++;
            getDepth(root.right,depth);
            depth--;
        }

        return;
    }
}

迭代法求最大深度(迭代法)

        迭代法可以使用层序遍历,循环一层深度加1就可以了,最大深度就是二叉树的层数

        迭代法也是一种自上而下的思路,从上往下一层一层去记录

class Solution {
    public int maxDepth(TreeNode root) {

        int depth = 0;

        if (root == null) {
            return depth;
        }
        // 创建队列
        Deque<TreeNode> deque = new LinkedList<>();

        // 将根节点添加进队列
        deque.offer(root);

        // 开始层序遍历
        while (!deque.isEmpty()) {
            // 获取当前节点的个数
            int len = deque.size();
            // 此时队列不为空,说明这一层是存在的,深度+1
            depth++;
            // 将这一层的节点弹出,同时将下一层的节点添加进来
            for (int i = 0; i < len; i++) {
                TreeNode node = deque.poll();
                if (node.left != null) {
                    deque.offer(node.left);
                }
                if (node.right != null) {
                    deque.offer(node.right);
                }
            }
        }
        return depth;
    }
}

559.n叉树的最大深度

题目链接:力扣

思路

        是求二叉树的最大深度的扩展

n叉树的最大深度

递归法

        原理和二叉树的最大深度的后序遍历法一样

        如果根节点有N个子节点,则这N个子节点对应N个子树。记N个子树的最大深度的最大值为maxChildDepth,则该N叉树的最大深度为maxChildDepth + 1
        每个子树的最大深度又可以通过同样的方式进行计算,因此可以采用【深度优先搜索】的方法计算
        在计算当前N叉树的最大深度时,可以先递归计算出其每个子树的最大深度,然后再计算出当前N叉树的最大深度
        递归访问到空节点结束

class Solution {
    public int maxDepth(Node root) {
        if (root == null) {
            return 0;
        }

        int maxChildDepth = 0;
        if (root.children != null) {
            for (Node child : root.children) {
                maxChildDepth = Math.max(maxChildDepth,maxDepth(child));
            }
        }
        return maxChildDepth + 1;
    }
}

迭代法

        层序遍历

class Solution {
    public int maxDepth(Node root) {
        
        if (root == null) {
            return 0;
        }

        // 创建队列
        Deque<Node> deque = new ArrayDeque<>();
        // 将根节点添加到队列中
        deque.offer(root);
        // 定义深度
        int depth = 0;
        // 开始层序遍历
        while (!deque.isEmpty()) {
            // 获取当前层数的节点个数
            int len = deque.size();
            // 弹出此层节点,添加对应的孩子节点
            while (len-- > 0) {
                Node node = deque.poll();
                for (Node child : node.children) {
                    deque.offer(child);
                }
            }
            depth++;
        }
        return depth;
    }
}

111.二叉树的最小深度

题目链接 力扣

思路

        跟求104.二叉树的最大深度思想上是类似的

        自上而下的思路:前序遍历,当遍历到一个叶子节点的时候,就是二叉树的最小深度
        自下而上的思路:后序遍历,统计根节点到每一个叶子节点的深度,比较出最小值

二叉树的最小深度

递归法

后序遍历

        这个后序遍历的方法其实和二叉树的最大深度的差不多,需要注意的就是,根节点左右子树的特殊情况,当根节点的其中一个子树为空的时候,要保证程序选择了非空子树的最小高度

        求二叉树的最小深度和求二叉树的最大深度的差别主要在于处理左右孩子不为空的逻辑。

class Solution {
    public int minDepth(TreeNode root) {

        if (root ==  null) {
            return 0;
        }

        int leftDepth = minDepth(root.left);// 求出左子树的最小高度
        int rightDepth = minDepth(root.right); // 求出右子树的最小高度
        // 对根节点的特殊情况进行处理
        if (root.left == null && root.right != null) {
            return rightDepth + 1; //两个作用:挑选出右子树|加成根节点的高度
        }
        if (root.right == null && root.left != null) {
            
            return leftDepth + 1;
        }
        // 然后在进行中间节点的处理
        int rootMinDerth = 1 + Math.min(leftDepth,rightDepth);

        return rootMinDerth;
    }
}

迭代法

        层序遍历

        如果你遍历到一个节点的左右子节点,那说明这个节点就是叶子节点,也就是碰到了最小深度了

class Solution {
    public int maxDepth(Node root) {
        
        if (root == null) {
            return 0;
        }

        // 创建队列
        Deque<Node> deque = new ArrayDeque<>();
        // 将根节点添加到队列中
        deque.offer(root);
        // 定义深度
        int depth = 0;
        // 开始层序遍历
        while (!deque.isEmpty()) {
            // 获取当前层数的节点个数
            int len = deque.size();
            // 弹出此层节点,添加对应的孩子节点
            while (len-- > 0) {
                Node node = deque.poll();
                for (Node child : node.children) {
                    deque.offer(child);
                }
            }
            depth++;
        }
        return depth;
    }
}

222.完全二叉树的节点个数

题目链接:力扣

思路

        可以把完全二叉树当作普通二叉树进行节点计数,所有可以遍历二叉树的方式都是可以的

        再就是根据完全二叉树的特性对二叉树的节点进行统计,一般的二叉树递归到节点为null就终止递归,完全二叉树除了这种情况还有就是可以递归到满二叉树的时候终止递归

完全二叉树的节点个数

递归法

使用完全二叉树的特性

这个方法是使用了完全二叉树的特性,递归到最后只会有两种情况:

        情况一:是个满二叉树
        情况二:最后一层叶子节点没有满

        对于情况一,直接使用2^k -1 求出满二叉树的节点个数(k代表满二叉树的最大深度)
        对于情况二,分别递归左右子树,递归到某一深度一定会有左孩子或者右孩子是满二叉树,然后按照情况一来处理,叶子节点也是满二叉树

class Solution {
    public int countNodes(TreeNode root) {

        // 如果遇到了空节点,递归终止,空节点的节点总数为0
        if (root == null) {
            return 0;
        }

        // 如果遇到了满二叉树,递归终止,满二叉树的节点总数为2^n - 1;
        TreeNode left = root.left;
        TreeNode right = root.right;
        int leftdepth = 0;
        int rightdepth = 0;
        while (left != null) {
            left = left.left;
            leftdepth++;
        }
        while (right != null) {
            right = right.right;
            rightdepth++;
        }
        if (leftdepth == rightdepth) {
            // 在完全二叉树中,当节点外侧的深度相等的时候,那么这个节点代表的树就是满二叉树
            return (2 << rightdepth) - 1;
        }

        int leftNum = countNodes(root.left);
        int rightNum = countNodes(root.right);
        return leftNum + rightNum + 1;

    }
}

使用普通二叉树的方法

采用后序遍历的形式,不得不说递归虽然不太好理解,但是真的是优美呀

class Solution {
    public int countNodes(TreeNode root) {

        if (root == null) {
            return 0;
        }

        int leftNum = countNodes(root.left);
        int rightNum = countNodes(root.right);
        int num = leftNum + rightNum + 1;

        return num;
    }
}
//精简版
class Solution {
    public int countNodes(TreeNode root) {

        if (root == null) {
            return 0;
        }

        return countNodes(root.left) + countNodes(root.right) + 1;
    }
}

迭代法

层序遍历:每出队一个元素就记录一次

class Solution {
    public int countNodes(TreeNode root) {

        if (root == null) {
            return 0;
        }

        Deque<TreeNode> deque = new ArrayDeque<>();

        deque.offer(root);

        int num = 0;

        while (!deque.isEmpty()) {
            int len = deque.size();
            for (int i = 0; i < len; i++) {
                TreeNode node = deque.poll();
                num++;
                if (node.left != null) {
                    deque.offer(node.left);
                }
                if (node.right != null) {
                    deque.offer(node.right);
                }
            }
        }
        return num;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值