class037 二叉树高频题目-下-不含树型dp【算法】

简介: class037 二叉树高频题目-下-不含树型dp【算法】

class037 二叉树高频题目-下-不含树型dp【算法】

code1 236. 二叉树的最近公共祖先

// 普通二叉树上寻找两个节点的最近公共祖先

// 测试链接 : https://leetcode.cn/problems/lowest-common-ancestor-of-a-binary-tree/

package class037;
// 普通二叉树上寻找两个节点的最近公共祖先
// 测试链接 : https://leetcode.cn/problems/lowest-common-ancestor-of-a-binary-tree/
public class Code01_LowestCommonAncestor {
  // 不提交这个类
  public static class TreeNode {
    public int val;
    public TreeNode left;
    public TreeNode right;
  }
  // 提交如下的方法
  public static TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
    if (root == null || root == p || root == q) {
      // 遇到空,或者p,或者q,直接返回
      return root;
    }
    TreeNode l = lowestCommonAncestor(root.left, p, q);
    TreeNode r = lowestCommonAncestor(root.right, p, q);
    if (l != null && r != null) {
      // 左树也搜到,右树也搜到,返回root
      return root;
    }
    if (l == null && r == null) {
      // 都没搜到返回空
      return null;
    }
    // l和r一个为空,一个不为空
    // 返回不空的那个
    return l != null ? l : r;
  }
}

code2 235. 二叉搜索树的最近公共祖先

// 搜索二叉树上寻找两个节点的最近公共祖先

// 测试链接 : https://leetcode.cn/problems/lowest-common-ancestor-of-a-binary-search-tree/

package class037;
// 搜索二叉树上寻找两个节点的最近公共祖先
// 测试链接 : https://leetcode.cn/problems/lowest-common-ancestor-of-a-binary-search-tree/
public class Code02_LowestCommonAncestorBinarySearch {
  // 不提交这个类
  public static class TreeNode {
    public int val;
    public TreeNode left;
    public TreeNode right;
  }
  // 提交如下的方法
  public static TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
    // root从上到下
    // 如果先遇到了p,说明p是答案
    // 如果先遇到了q,说明q是答案
    // 如果root在p~q的值之间,不用管p和q谁大谁小,只要root在中间,那么此时的root就是答案
    // 如果root在p~q的值的左侧,那么root往右移动
    // 如果root在p~q的值的右侧,那么root往左移动
    while (root.val != p.val && root.val != q.val) {
      if (Math.min(p.val, q.val) < root.val && root.val < Math.max(p.val, q.val)) {
        break;
      }
      root = root.val < Math.min(p.val, q.val) ? root.right : root.left;
    }
    return root;
  }
}

code3 113. 路径总和 II

// 收集累加和等于aim的所有路径

// 测试链接 : https://leetcode.cn/problems/path-sum-ii/

package class037;
import java.util.ArrayList;
import java.util.List;
// 收集累加和等于aim的所有路径
// 测试链接 : https://leetcode.cn/problems/path-sum-ii/
public class Code03_PathSumII {
  // 不提交这个类
  public static class TreeNode {
    public int val;
    public TreeNode left;
    public TreeNode right;
  }
  // 提交如下的方法
  public static List<List<Integer>> pathSum(TreeNode root, int aim) {
    List<List<Integer>> ans = new ArrayList<>();
    if (root != null) {
      List<Integer> path = new ArrayList<>();
      f(root, aim, 0, path, ans);
    }
    return ans;
  }
  public static void f(TreeNode cur, int aim, int sum, List<Integer> path, List<List<Integer>> ans) {
    if (cur.left == null && cur.right == null) {
      // 叶节点
      if (cur.val + sum == aim) {
        path.add(cur.val);
        copy(path, ans);
        path.remove(path.size() - 1);
      }
    } else {
      // 不是叶节点
      path.add(cur.val);
      if (cur.left != null) {
        f(cur.left, aim, sum + cur.val, path, ans);
      }
      if (cur.right != null) {
        f(cur.right, aim, sum + cur.val, path, ans);
      }
      path.remove(path.size() - 1);
    }
  }
  public static void copy(List<Integer> path, List<List<Integer>> ans) {
    List<Integer> copy = new ArrayList<>();
    for (Integer num : path) {
      copy.add(num);
    }
    ans.add(copy);
  }
}

code4 110. 平衡二叉树

// 验证平衡二叉树

// 测试链接 : https://leetcode.cn/problems/balanced-binary-tree/

package class037;
// 验证平衡二叉树
// 测试链接 : https://leetcode.cn/problems/balanced-binary-tree/
public class Code04_BalancedBinaryTree {
  // 不提交这个类
  public static class TreeNode {
    public int val;
    public TreeNode left;
    public TreeNode right;
  }
  // 提交如下的方法
  public static boolean balance;
  public static boolean isBalanced(TreeNode root) {
    // balance是全局变量,所有调用过程共享
    // 所以每次判断开始时,设置为true
    balance = true;
    height(root);
    return balance;
  }
  // 一旦发现不平衡,返回什么高度已经不重要了
  public static int height(TreeNode cur) {
    if (!balance || cur == null) {
      return 0;
    }
    int lh = height(cur.left);
    int rh = height(cur.right);
    if (Math.abs(lh - rh) > 1) {
      balance = false;
    }
    return Math.max(lh, rh) + 1;
  }
}

code5 98. 验证二叉搜索树

// 验证搜索二叉树

// 测试链接 : https://leetcode.cn/problems/validate-binary-search-tree/

code1 中序遍历判断是否升序

code2 递归

package class037;
// 验证搜索二叉树
// 测试链接 : https://leetcode.cn/problems/validate-binary-search-tree/
public class Code05_ValidateBinarySearchTree {
  // 不提交这个类
  public static class TreeNode {
    public int val;
    public TreeNode left;
    public TreeNode right;
  }
  // 提交以下的方法
  public static int MAXN = 10001;
  public static TreeNode[] stack = new TreeNode[MAXN];
  public static int r;
  // 提交时改名为isValidBST
  public static boolean isValidBST1(TreeNode head) {
    if (head == null) {
      return true;
    }
    TreeNode pre = null;
    r = 0;
    while (r > 0 || head != null) {
      if (head != null) {
        stack[r++] = head;
        head = head.left;
      } else {
        head = stack[--r];
        if (pre != null && pre.val >= head.val) {
          return false;
        }
        pre = head;
        head = head.right;
      }
    }
    return true;
  }
  public static long min, max;
  // 提交时改名为isValidBST
  public static boolean isValidBST2(TreeNode head) {
    if (head == null) {
      min = Long.MAX_VALUE;
      max = Long.MIN_VALUE;
      return true;
    }
    boolean lok = isValidBST2(head.left);
    long lmin = min;
    long lmax = max;
    boolean rok = isValidBST2(head.right);
    long rmin = min;
    long rmax = max;
    min = Math.min(Math.min(lmin, rmin), head.val);
    max = Math.max(Math.max(lmax, rmax), head.val);
    return lok && rok && lmax < head.val && head.val < rmin;
  }
}

code6 669. 修剪二叉搜索树

// 修剪搜索二叉树

// 测试链接 : https://leetcode.cn/problems/trim-a-binary-search-tree/

package class037;
// 修剪搜索二叉树
// 测试链接 : https://leetcode.cn/problems/trim-a-binary-search-tree/
public class Code06_TrimBinarySearchTree {
  // 不提交这个类
  public static class TreeNode {
    public int val;
    public TreeNode left;
    public TreeNode right;
  }
  // 提交以下的方法
  // [low, high]
  public static TreeNode trimBST(TreeNode cur, int low, int high) {
    if (cur == null) {
      return null;
    }
    if (cur.val < low) {
      return trimBST(cur.right, low, high);
    }
    if (cur.val > high) {
      return trimBST(cur.left, low, high);
    }
    // cur在范围中
    cur.left = trimBST(cur.left, low, high);
    cur.right = trimBST(cur.right, low, high);
    return cur;
  }
}

code7 337. 打家劫舍 III

// 二叉树打家劫舍问题

// 测试链接 : https://leetcode.cn/problems/house-robber-iii/

package class037;
// 二叉树打家劫舍问题
// 测试链接 : https://leetcode.cn/problems/house-robber-iii/
public class Code07_HouseRobberIII {
  // 不提交这个类
  public static class TreeNode {
    public int val;
    public TreeNode left;
    public TreeNode right;
  }
  // 提交如下的方法
  public static int rob(TreeNode root) {
    f(root);
    return Math.max(yes, no);
  }
  // 全局变量,完成了X子树的遍历,返回之后
  // yes变成,X子树在偷头节点的情况下,最大的收益
  public static int yes;
  // 全局变量,完成了X子树的遍历,返回之后
  // no变成,X子树在不偷头节点的情况下,最大的收益
  public static int no;
  public static void f(TreeNode root) {
    if (root == null) {
      yes = 0;
      no = 0;
    } else {
      int y = root.val;
      int n = 0;
      f(root.left);
      y += no;
      n += Math.max(yes, no);
      f(root.right);
      y += no;
      n += Math.max(yes, no);
      yes = y;
      no = n;
    }
  }
}


相关文章
|
27天前
|
算法
分享一些提高二叉树遍历算法效率的代码示例
这只是简单的示例代码,实际应用中可能还需要根据具体需求进行更多的优化和处理。你可以根据自己的需求对代码进行修改和扩展。
|
1月前
|
存储 缓存 算法
如何提高二叉树遍历算法的效率?
选择合适的遍历算法,如按层次遍历树时使用广度优先搜索(BFS),中序遍历二叉搜索树以获得有序序列。优化数据结构,如使用线索二叉树减少空指针判断,自定义节点类增加辅助信息。利用递归与非递归的特点,避免栈溢出问题。多线程并行遍历提高速度,注意线程安全。缓存中间结果,避免重复计算。预先计算并存储信息,提高遍历效率。综合运用这些方法,提高二叉树遍历算法的效率。
50 5
|
1月前
|
算法
树的遍历算法有哪些?
不同的遍历算法适用于不同的应用场景。深度优先搜索常用于搜索、路径查找等问题;广度优先搜索则在图的最短路径、层次相关的问题中较为常用;而二叉搜索树的遍历在数据排序、查找等方面有重要应用。
28 2
|
1月前
|
机器学习/深度学习 JSON 算法
二叉树遍历算法的应用场景有哪些?
【10月更文挑战第29天】二叉树遍历算法作为一种基础而重要的算法,在许多领域都有着不可或缺的应用,它为解决各种复杂的问题提供了有效的手段和思路。随着计算机科学的不断发展,二叉树遍历算法也在不断地被优化和扩展,以适应新的应用场景和需求。
33 0
|
2月前
|
存储 算法 关系型数据库
数据结构与算法学习二一:多路查找树、二叉树与B树、2-3树、B+树、B*树。(本章为了解基本知识即可,不做代码学习)
这篇文章主要介绍了多路查找树的基本概念,包括二叉树的局限性、多叉树的优化、B树及其变体(如2-3树、B+树、B*树)的特点和应用,旨在帮助读者理解这些数据结构在文件系统和数据库系统中的重要性和效率。
26 0
数据结构与算法学习二一:多路查找树、二叉树与B树、2-3树、B+树、B*树。(本章为了解基本知识即可,不做代码学习)
|
2月前
|
存储 算法 搜索推荐
数据结构与算法学习十七:顺序储存二叉树、线索化二叉树
这篇文章主要介绍了顺序存储二叉树和线索化二叉树的概念、特点、实现方式以及应用场景。
29 0
数据结构与算法学习十七:顺序储存二叉树、线索化二叉树
|
2月前
|
存储 算法
【二叉树】—— 算法题
【二叉树】—— 算法题
【二叉树】—— 算法题
|
2月前
|
存储 算法
动态规划算法学习一:DP的重要知识点、矩阵连乘算法
这篇文章是关于动态规划算法中矩阵连乘问题的详解,包括问题描述、最优子结构、重叠子问题、递归方法、备忘录方法和动态规划算法设计的步骤。
126 0
|
2月前
|
存储 算法
数据结构与算法学习十六:树的知识、二叉树、二叉树的遍历(前序、中序、后序、层次)、二叉树的查找(前序、中序、后序、层次)、二叉树的删除
这篇文章主要介绍了树和二叉树的基础知识,包括树的存储方式、二叉树的定义、遍历方法(前序、中序、后序、层次遍历),以及二叉树的查找和删除操作。
30 0