需要领悟一下二叉树遍历上双指针操作,优先掌握递归
题目链接/文章讲解:530.二叉搜索树的最小绝对差
视频讲解:530.二叉搜索树的最小绝对差
二叉搜索树,考虑用中序遍历
遇到在二叉搜索树上求什么最值啊,差值之类的,就把它想成在一个有序数组上求最值,求差值
要学会在递归遍历的过程中如何记录前后两个指针
明确递归函数需不需要返回值
该题涉及到回溯
// 递归 前后指针
class Solution {
TreeNode pre; // 记录上一个遍历的节点
int ans = Integer.MAX_VALUE;;
public int getMinimumDifference(TreeNode root) {
if(root == null)return 0;
dfs(root);
return ans;
}
public void dfs(TreeNode root){
if(root == null) return;
// 左
dfs(root.left);
// 中
if(pre != null){
ans = Math.min(ans, root.val - pre.val);
pre = root;
}
pre = root;
// 右
dfs(root.right);
}
}
和 530差不多双指针思路,不过 这里涉及到一个很巧妙的代码技巧。
可以先自己做做看,然后看我的视频讲解。
题目链接/文章讲解:501.二叉搜索树中的众数
视频讲解:501.二叉搜索树中的众数
最直观的方法
是把这个树都遍历了,用map统计频率,把频率排个序,最后取前面高频的元素的集合。作者:力扣官方题解
链接:https://leetcode.cn/problems/find-mode-in-binary-search-tree/solutions/425430/er-cha-sou-suo-shu-zhong-de-zhong-shu-by-leetcode-/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
// 利用二叉搜索树的特性 和记录众数的一个技巧 一次遍历解决
class Solution {
ArrayList<Integer> resList;
int maxCount;
int count;
TreeNode pre;
public int[] findMode(TreeNode root) {
resList = new ArrayList<>();
maxCount = 0;
count = 0;
pre = null;
findMode1(root);
int[] res = new int[resList.size()];
for(int i = 0; i < resList.size(); i++){
res[i] = resList.get(i);
}
return res;
}
public void findMode1(TreeNode root){
if(root == null) return;
// 左
findMode1(root.left);
// 中
int rootValue = root.val;
// 计数
if(pre == null || rootValue != pre.val){
count = 1;
}else{
count++;
}
// 更新结果以及maxCount
if(count > maxCount){
resList.clear();
resList.add(rootValue);
maxCount = count;
}else if(count == maxCount){
resList.add(rootValue);
}
pre =root;
// 右
findMode1(root.right);
}
}
public class Solution {
private void searchBST(TreeNode cur, Map<Integer, Integer> map) {
if (cur == null) return;
map.put(cur.val, map.getOrDefault(cur.val, 0) + 1); // 中
searchBST(cur.left, map); // 左
searchBST(cur.right, map); // 右
}
public int[] findMode(TreeNode root) {
Map<Integer, Integer> map = new HashMap<>();
List<Integer> modes = new ArrayList<>();
searchBST(root, map);
int maxFrequency = 0;
for (int frequency : map.values()) {
maxFrequency = Math.max(maxFrequency, frequency);
}
for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
if (entry.getValue() == maxFrequency) {
modes.add(entry.getKey());
}
}
int[] result = new int[modes.size()];
for (int i = 0; i < modes.size(); i++) {
result[i] = modes.get(i);
}
return result;
}
}
本题其实是比较难的,可以先看我的视频讲解
题目链接/文章讲解:236. 二叉树的最近公共祖先
视频讲解:236. 二叉树的最近公共祖先
class Solution {
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if(root == null || root == p || root == q) return root; // 递归终止条件
// 后序遍历
TreeNode left = lowestCommonAncestor(root.left, p, q);
TreeNode right = lowestCommonAncestor(root.right, p, q);
// 中
if(left == null && right == null) return null; //p和q都未找到
else if(left == null && right != null) return right; //只找到一个
else if(left != null && right == null) return left; //只找到一个
else return root; // p和q都找到
}
}
// 简洁版代码
class Solution {
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if(root == null || root == p || root == q) return root;
TreeNode left = lowestCommonAncestor(root.left, p, q);
TreeNode right = lowestCommonAncestor(root.right, p, q);
if(left == null) return right;
if(right == null) return left;
return root;
}
}