530.二叉搜索树的最小绝对差

文章:24. 二叉搜索树的最小绝对差

题目:530. 二叉搜索树的最小绝对差

【思路】

递归

二叉搜索树中采用中序遍历,其实就是一个有序数组。

最直观的想法,就是把二叉搜索树转换成有序数组,然后遍历一遍数组,就统计出来最小差值了。

  • Java实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Solution {
int min = Integer.MAX_VALUE;
TreeNode pre;
public int getMinimumDifference(TreeNode root) {
traversal(root);
return min;

}
public void traversal(TreeNode node){
if(node == null)return ;
traversal(node.left);
if(pre!=null){
min = Math.min(min,node.val-pre.val);
}
pre = node;
traversal(node.right);
return ;

}
}
  • Go实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
func getMinimumDifference(root *TreeNode) int {
min := math.MaxInt64
var prev *TreeNode
var travelsal func(node *TreeNode)
travelsal = func(node *TreeNode){
if node == nil{
return
}
travelsal(node.Left)
if prev!= nil && node.Val - prev.Val < min{
min = node.Val-prev.Val
}
prev = node
travelsal(node.Right)

return
}
travelsal(root)
return min
}

501.二叉搜索树中的众数

文章:25. 二叉搜索树中的众数

题目:501. 二叉搜索树中的众数

【思路】

如果不是二叉搜索树:

最直观的方法是把整个树都遍历一次,用map统计频率,把频率排序,最后取前面高频的元素的集合。

如果是二叉搜索树:

是搜索树的话,中序遍历就是有序的。

遍历有序数组的元素出现频率,从头遍历,那么一定是相邻两个元素作比较,然后把出现频率最高的元素输出即可。

  • Java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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 rootVal = root.val;
if(pre == null || rootVal != pre.val){
count = 1;
}else{
count++;
}
if(count > maxCount){
resList.clear();
resList.add(rootVal);
maxCount = count;
}else if(count== maxCount){
resList.add(rootVal);
}
pre = root;
findMode1(root.right);
}
}
  • Go实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
func findMode(root *TreeNode) []int {
var pre *TreeNode
maxCount:=0
count := 0
resList := make([]int,0)
var traversal func(node *TreeNode)
traversal = func(node *TreeNode){
if node == nil{
return
}
traversal(node.Left)
rootVal := node.Val
if pre==nil || rootVal != pre.Val{
count =1
}else{
count++
}
if count >= maxCount{
if count > maxCount {
resList =[]int{rootVal}
}else{
resList = append(resList,rootVal)
}
maxCount = count
}
pre = node
traversal(node.Right)
}
traversal(root)
return resList
}

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

文章:26. 二叉树的最近公共祖先

题目:236. 二叉树的最近公共祖先

【思路】

从下往上遍历,后序遍历

  • Java实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Solution {
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
return traversal(root,p,q);
}
public TreeNode traversal(TreeNode root ,TreeNode p,TreeNode q){
if(root == null || root.val == p.val ||root.val == q.val){
return root;
}
TreeNode left = traversal(root.left,p,q);
TreeNode right = traversal(root.right,p,q);
if(left != null && right != null)return root;
if(left == null && right != null)return right;
else if(left!= null && right== null)return left;
else return null;
}
}
  • Go实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 func lowestCommonAncestor(root, p, q *TreeNode) *TreeNode {

return traversal(root,p,q)
}
func traversal(root *TreeNode,p,q *TreeNode)*TreeNode{
if root == nil || root.Val == p.Val || root.Val == q.Val{
return root
}
Left := lowestCommonAncestor(root.Left,p,q)
Right := lowestCommonAncestor(root.Right,p,q)
if Left != nil && Right != nil{
return root
}
if Left == nil && Right !=nil{
return Right
}else if Left != nil && Right == nil{
return Left
}else{
return nil
}

}

【算法总结】

  • 二叉搜索树的最小绝对差:使用递归,将二叉树全部遍历放进数组,然后循环比较差值即可
  • 二叉搜索树中的众数:使用递归,循环遍历二叉树放入数组,然后循环遍历数组,比较相邻的值是否相等,如果不相等则更新count的值;然后进行count和maxCount的比较,相等的话则更新maxCount 的值并把值写入res,不相等的话则将res置空后添加count的值,继续遍历完数列重复以上操作。
  • 二叉树的最近公共祖先:从下往上遍历二叉树,使用后序遍历,通过从下往上遍历节点,来获得p和q,如果当前节点的左孩子和右孩子不为空的话则返回该节点为最近公共祖先。