算法打卡,用于自律

本文介绍了四个关于二叉树的问题及其解法。第一个问题是判断两棵树的叶子节点是否具有相同的顺序,第二个问题是求解二叉搜索树中指定范围内的元素之和,第三个问题是检查一棵树是否为单值树,第四个问题是计算二叉树中不同节点值的数量。通过这些解法,深入理解了二叉树的操作和性质。
摘要由CSDN通过智能技术生成

题目一

 解法

/**
 * 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 {
    List<Integer> list1 = new ArrayList<Integer>();
    List<Integer> list2 = new ArrayList<Integer>();
    public boolean leafSimilar(TreeNode root1, TreeNode root2) {
        method(root1,list1);
        method(root2,list2);
        if(list1.size()==list2.size()){
            for(int i = 0;i<list1.size();i++){
                if(list1.get(i)!=list2.get(i)){
                    return false;
                }
            }
            return true;
        }else{
            return false;
        }
    }
    public void method(TreeNode root,List list){
        if(root==null) return;
        if(root.left==null&&root.right==null) list.add(root.val);
        method(root.left,list);
        method(root.right,list);
    }
}

题目二

 解法

/**
 * 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 int rangeSumBST(TreeNode root, int low, int high) {
        return method(root,low,high);
    }
    public int method(TreeNode root, int low, int high){
        if(root==null) return 0;
        if(root.val<low) return method(root.right,low,high);
        if(root.val>high) return method(root.left,low,high);
        return root.val+method(root.left,low,high)+method(root.right,low,high);
    }
}

题目三

 解法

/**
 * 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 boolean isUnivalTree(TreeNode root) {
        if(root==null) return true;
        if(root.left!=null){
            if(root.val!=root.left.val) return false;
        }
        if(root.right!=null){
            if(root.val!=root.right.val) return false;
        }
        return isUnivalTree(root.left)&&isUnivalTree(root.right);
    }
}

题目四

解法

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    HashSet<Integer> set = new HashSet<Integer>();
    int ans = 0;
    public int numColor(TreeNode root) {
        method(root);
        return ans;
    }
    public void method(TreeNode root){
        if(root==null) return;
        if(!set.add(root.val)){
        
        }else{
            set.add(root.val);
            ans++;
        }
        method(root.left);
        method(root.right);
    }
}

 

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值