关于树结构的基本知识

1
2
3
4
5
6
7
8
9
10
11
12
13
树中节点数 = 总分叉数 + 1
叶子节点的度数为0, 度就是指该节点的直接子节点有几个
树的存储结构:{
双亲表示法:
孩子表示法:
孩子兄弟表示法:
}
完全二叉树:从根结点到倒数第二层满足完美二叉树,最后一层可以不完全填充,其叶子结点都靠左对齐。

二叉树第i层最多有2^(i-1)个节点
二叉树深度为k最多有2^k-1个节点
二叉树的终端结点数为n1,度数为2的结点数为n2, 则n1 = n2 + 1
完全二叉树的结点数为n,则深度为lg2(n)+1

二叉树相关的题目

二叉搜索树相关的题目

性质

若它的左子树不为空,则左子树上所有节点的值均小于它的根结构的值
若它的右子树不为空,则右子树上所有节点的值均大于它的根结构的值
它左,右子树也分别是二叉排序树

二叉搜索树的中序遍历是一个有序数组

平衡二叉树(AVL)相关的题目

性质

是一种二叉搜索树,其中每一个节点的左子树和右子树的高度差至多等于1
也就是说二叉树上所有节点的平衡因子(BF:节点的左子树深度减去节点右子树深度)只可能是-1,0,1.

AVL的结构代码

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
class BitNode {
construct(data, lchild, rchild) {
this.bf = 0 // 节点的平衡因子
this.data = data
this.lchild = (lchild === undefined ? lchild : null)
this.rightchild = (rchild === undefined ? rchild : null)
}
// 对以p为根的二叉排序树右旋操作,1. 平衡因子大于1需要右旋, 2. 使得平衡因子变成负数
R_Rotate(p) {
// p的左节点
const l = p.lchild
// 将原来p左节点的右子树变成p的左子树
p.lchild = l.rchild
// 旋转后原来p的左节点的右节点变成p
l.rchild = p
// p指向新的节点
p = l
}
// 左旋操作
L_Rotate(p) {
const r = p.rchild
p.rchild = r.lchild
r.lchild = p
p = r
}
}

将一颗二叉搜索树变成AVL的过程

avl1
avl1
avl1
avl1

常见题目

树节点的结构代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function TreeNode(val, left, right) {
this.left = (left === undefined ? null : left)
this.val = (val === undefined ? 0 : val)
this.right = (right === undefined ? null : right)
this.toString = () => {
const root = this
const levels = [[root]]
let result = [root]
while (levels.length) {
const level = levels.pop()
const ans = []
while (level.length) {
const node = level.pop()
node.left && ans.push(node.left)
node.right && ans.push(node.right)
}
ans.length && levels.push(ans) && (result = result.concat(ans.slice()))
}
return result.reduce((acc, node) =>
acc.concat([node ? node.val : 'null']),
[])
}
}

合并二叉树

题目来源
思路:
节点root1存在 & 节点root2存在 => 两个相加
节点root1存在 | 节点root2存在 => root1 | root2
否则 => null

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const mergeTrees = (root1, root2) => {
let val = null
if (!root1 && !root2) return null
if (root1 && root2) {
val = root1.val + root2.val
} else if (root1 || root2) {
val = (root1 && root1.val) || (root2 && root2.val)
}
const node = new TreeNode(val)
const root1l = root1 ? root1.left : null
const root1r = root1 ? root1.right : null
const root2l = root2 ? root2.left : null
const root2r = root2 ? root2.right : null
node.left = mergeTrees(root1l, root2l)
node.right = mergeTrees(root1r, root2r)
return node
}

翻转二叉树

题目来源
思路:
就是求一颗树的镜像
节点root存在左子树,将其左子树变成节点的右子树
节点root存在右子树,将其右子树变成节点的左子树

1
2
3
4
5
6
7
8
9
10
const invertTree = (root) => {
if (!root || (!root.left && !root.right)) return root
const lchild = root.left
const rchild = root.right
root.left = rchild
root.right = lchild
root.left && invertTree(root.left)
root.right && invertTree(root.right)
return root
}

二叉树的最大深度

题目来源
思路:

  1. dfs深度遍历每条路径即可
  2. 层次遍历
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const maxDepth = root => {
let result = 0
const path = []
if (!root) return result
const goLevel = node => {
path.push(node.val)
if (!node.left && !node.right) {
result = Math.max(result, path.length)
return
}
// 下一步往左走
node.left && goLevel(node.left)
// 本次的结果
node.left && path.pop()
// 下一步往右走
node.right && goLevel(node.right)
// 本次的结果
node.right && path.pop()
}
goLevel(root)
return result
}

二叉树的中序遍历

题目来源
思路:
下一步按照有左选左,没左选右,并记录本次没有左选择的结果,没左没右就结束。
depth0: 有左选左,没左选右, 并记录
depth1: 有左选左,没左选右, 并记录
.
.
no choice: 结束

1
2
3
4
5
6
7
8
9
10
11
12
13
const inorderTraversal = root => {
const path = []
const dfs = node => {
if (!node) return
// 本次决定下一步选择走左
node.left && dfs(node.left)
path.push(node.val)
// 本次决定下一步选择走右
node.right && dfs(node.right)
}
dfs(root)
return path
}

二叉树展开为链表

题目来源
思路:
对每个节点做了如下处理:左子树变成右子树,右子树变成转变后右子树的最右节点, 该节点的左子树为空

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const flatten = root => {
const searize = node => {
if (!node) return
const lchild = node.left
const rchild = node.right
node.right = lchild
node.left = null
let p = node
while (p) {
if (p.right === null) break
p = p.right
}
p.right = rchild
searize(node.right)
}
searize(root)
}

从前序和中序遍历序列构造二叉树

题目来源
思路: 分治法,拆拆拆。
前序可以得出数组首元素是根元素
中序可以得到左子树和右子树

1
2
3
4
5
6
7
8
9
10
11
const buildTree = (preorder, inorder) => {
if (inorder.length === 0) return null
const nodeVal = preorder[0]
let node = null
let index = inorder.indexOf(nodeVal)
inorder.indexOf(nodeVal)
node = new TreeNode(nodeVal)
node.left = buildTree(preorder.slice(1, index + 1), inorder.slice(0, index))
node.right = buildTree(preorder.slice(index + 1), inorder.slice(index + 1))
return node
}

不同的二叉搜索树

题目来源
思路1:
dfs的回溯能求出所有的组合然后对搜有的组合进行判断是否是二叉搜索树,这种显然很耗时间
而且特别复杂,在这里总结出了如果有很多种选择的可能,或者逻辑点很多的不要使用回溯,会头痛死
思路二:
看了官方的动态规划,嗐,感慨还是动态规划好。不要有了新欢就忘了旧爱…..
定义公式:
G(n): 长度为n的序列能构成的不同二叉搜索树的个数。
F(i,n): 以i为根,序列长度为n的不同二叉搜索树个数(1 <= i <= n)
则:
G(n) = F(1, n) + …. + F(n, n)
依次遍历{1..n},当以作为根节点时候将1…(i - 1)作为左子树,i + 1…n 作为右子树
其中: G(0)=1, G(1)=1
这个遍历的时候有F(i, n) = 左:G(i - 1) * 右: G(n - i)
因为:G(n) = F(1, n) + …. + F(n, n), F(i, n) = G(i - 1) * G(n - i)
所以: G(n) = G(1 - 1) * G(n - 1) + … + G(n - 1) * G(0)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
const numTrees = n => {
const G = new Array(n + 1).fill(0)
let temp = 0
G[0] = 1
G[1] = 1
for (let i = 2; i <= n; i++) {
for (let j = 1; j <= i; j++) {
// 长度为i的集合 = 以j为根长度为i的总集合
// G[i] = G[i] + F(j, i)
G[i] = G[i] + G[j - 1] * G[i - j]
}
}
return G[n]
}

重建二叉树

平衡二叉树

二叉搜索树的第k个节点

按之字形顺序打印二叉树

序列化二叉树

二叉树的下一个节点

树的子结构

二叉树的最近公共祖先

二叉搜索树与查找表

验证二叉搜索树

文章作者: woyao
文章链接: https://chenwoyao.github.io/2021/04/23/数据结构和算法/树/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 woyao的博客