当前位置: 首页 > article >正文

力扣labuladong——一刷day60

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

文章目录

  • 前言
  • 一、力扣663. 均匀树划分
  • 二、力扣687. 最长同值路径
  • 三、力扣814. 二叉树剪枝


前言


二叉树的递归分为「遍历」和「分解问题」两种思维模式,这道题需要用到「分解问题」的思维,而且涉及处理子树,需要用后序遍历。

一、力扣663. 均匀树划分

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    HashSet<Integer> set = new HashSet<>();
    public boolean checkEqualTree(TreeNode root) {
        int count = root.val + fun(root.left) + fun(root.right);
        if(count % 2 != 0){
            return false;
        }
        return set.contains(count/2);
    }
    public int  fun(TreeNode root){
        if(root == null){
            return  0;
        }
        int left = fun(root.left);
        int right = fun(root.right);
        int cur = left + right + root.val;
        set.add(cur);
        return cur;
    }
}

二、力扣687. 最长同值路径

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    int res = 0;
    public int longestUnivaluePath(TreeNode root) {
        if(root == null){
            return 0;
        }
        fun(root);
        return res-1;
    }
    public int fun(TreeNode root){
        if(root == null){
            return 0;
        }
        int left = fun(root.left);
        int right = fun(root.right);
        int cur = 1, curLeft = 1, curRight = 1;
        if(root.left != null){
            if(root.left.val == root.val){
                cur += left;
                curLeft += left;
            }
        }
        if(root.right != null){
            if(root.right.val == root.val){
                cur += right;
                curRight += right;
            }
        }
        res = Math.max(res,cur);
        return Math.max(curLeft,curRight);
    }
}

三、力扣814. 二叉树剪枝

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    boolean flag = true;
    public TreeNode pruneTree(TreeNode root) {
        if(root == null){
            return null;
        }
        fun(root);
        if(flag){
            return null;
        }
        flag = true;
        root.left = pruneTree(root.left);
        root.right = pruneTree(root.right);
        return root;
    }
    public void fun(TreeNode root){
        if(root == null){
            return ;
        }
        if(root.val == 1){
            flag = false;
        }
        fun(root.left);
        fun(root.right);
    }
}

减枝

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    public TreeNode pruneTree(TreeNode root) {
        if(root == null){
            return null;
        }
        root.left = pruneTree(root.left);
        root.right = pruneTree(root.right);
        if(root.left == null && root.right == null && root.val == 0){
            return null;
        }
        return root;
    }
}

http://www.kler.cn/a/152228.html

相关文章:

  • SCAUoj综合性实验
  • 【经验分享】openGauss 客户端(Data Studio / DBeaver)连接方式
  • RESTful API,以及如何使用它构建 web 应用程序
  • 性能测试:系统架构性能优化
  • echarts 地图
  • 串口更新app程序(参考他人资料)
  • RabbitMQ登录控制台显示--你与此网站的连接不是私密连接
  • EasyExcel生成多sheet页的excel
  • PyQt基础_011_对话框类控件QMessage
  • kubernetes(k8s)容器内无法连接同所绑定的Service ClusterIP问题记录
  • 指针(2)
  • windows 查看mysql的错误日志
  • Android 11.0 修改Android系统的通知自动成组的数量
  • Spring底层篇
  • uniapp如何与原生应用进行混合开发?
  • Docker stats 命令
  • Javaweb之Vue组件库Element案例的详细解析
  • pthread 使用入门
  • 【猜数字游戏】用wxPython实现:基本的游戏框架 + 简单的图形用户界面
  • Constraintlayout