给你一个二叉搜索树的根节点 root
,返回 树中任意两不同节点值之间的最小差值 。
差值是一个正数,其数值等于两值之差的绝对值。
示例 1:
输入:root = [4,2,6,1,3]
输出:1
示例 2:
输入:root = [1,0,48,null,null,12,49]
输出:1
class Solution {
int min = Integer.MAX_VALUE;
int pre = -1 ;
public int getMinimumDifference(TreeNode root) {
if(root == null) return min;
//中序遍历,计算任意两个节点的差值,取最小
//左
if (root.left!= null) {
min = Math.min(min, getMinimumDifference(root.left));
}
//中
if(pre != -1) {
min = Math.min(min, Math.abs(root.val - pre));
}
pre = root.val;
//右
if (root.right!= null) {
min = Math.min(min, getMinimumDifference(root.right));
}
return min;
}
}
给你一个含重复值的二叉搜索树(BST)的根节点 root
,找出并返回 BST 中的所有 众数(即,出现频率最高的元素)。
如果树中有不止一个众数,可以按 任意顺序 返回。
假定 BST 满足如下定义:
示例 1:
输入:root = [1,null,2,2]
输出:[2]
示例 2:
输入:root = [0]
输出:[0]
class Solution {
int maxCount , count ;
List<Integer> res = new ArrayList<Integer>();
TreeNode pre ;
public int[] findMode(TreeNode root) {
dfs(root);
//搜索二叉树,中序遍历,结果由小到大
int[] result = new int[res.size()];
for (int i = 0; i < res.size(); i++){
result[i] = res.get(i);
}
return result;
}
public void dfs(TreeNode root){
if(root == null){
return;
}
dfs(root.left);
TreeNode cur = root ;
if(pre !=null && pre.val == cur.val){
count++;
}else{
count = 1 ;
}
if(count > maxCount){
res.clear();
res.add(cur.val);
maxCount = count;
}else if(count == maxCount){
res.add(cur.val);
}
pre = cur ;
dfs(root.right);
}
}
给定一个二叉树, 找到该树中两个指定节点的最近公共祖先。
百度百科中最近公共祖先的定义为:“对于有根树 T 的两个节点 p、q,最近公共祖先表示为一个节点 x,满足 x 是 p、q 的祖先且 x 的深度尽可能大(一个节点也可以是它自己的祖先)。”
示例 1:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-KMnzzoCz-1686713398892)(https://assets.leetcode.com/uploads/2018/12/14/binarytree.png)]
输入:root = [3,5,1,6,2,0,8,null,null,7,4], p = 5, q = 1
输出:3
解释:节点 5 和节点 1 的最近公共祖先是节点 3 。
示例 2:
输入:root = [3,5,1,6,2,0,8,null,null,7,4], p = 5, q = 4
输出:5
解释:节点 5 和节点 4 的最近公共祖先是节点 5 。因为根据定义最近公共祖先节点可以为节点本身。
示例 3:
输入:root = [1,2], p = 1, q = 2
输出:1
提示:
[2, 105]
内。-109 <= Node.val <= 109
Node.val
互不相同
。p != q
p
和 q
均存在于给定的二叉树中。class Solution {
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if(root == null) return null;
if(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 root;
//此处返回不为空的子节点,即公共祖先
if(left!= null && right == null) return left;
if(left == null && right!= null) return right;
return null;
}
}