二叉树的所有路径
https://leetcode.cn/problems/binary-tree-paths/
1 |
|
平衡二叉树
https://leetcode.cn/problems/balanced-binary-tree/
1 | public boolean isBalanced(TreeNode root) { |
二叉树对称
https://leetcode.cn/problems/symmetric-tree/
对称条件,对应位置的节点值相等,对应位置的左节点与右节点,右节点与左节点是相同的。
1 | public boolean isSymmetric(TreeNode root) { |
二叉树相同
https://leetcode.cn/problems/same-tree/
相同条件:相同位置值相同,左右孩子也相同
1 | public boolean isSameTree(TreeNode p, TreeNode q) { |
相同子树
https://leetcode.cn/problems/subtree-of-another-tree/
遍历节点,进行比较
1 | public boolean isSubtree(TreeNode root, TreeNode subRoot) { |
左叶子节点和
使用递归前序遍历,借助遍历isLeft标记是左节点,如果同时是叶子节点还是左节点的话,就累加该值
1 | private boolean isLeft = false; |
代码随想录解法
1 | public int sumOfLeftLeaves(TreeNode root) { |
左下角的值
https://leetcode.cn/problems/find-bottom-left-tree-value/
- 层序遍历
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23public int findBottomLeftValue(TreeNode root) {
Deque<TreeNode> queue = new ArrayDeque<TreeNode>();
queue.add(root);
int result = root.val;
while (!queue.isEmpty()) {
int size = queue.size();
int i = 0;
while (i < size) {
TreeNode current = queue.remove();
if (i == 0) {
result = current.val;
}
if (current.left != null) {
queue.add(current.left);
}
if (current.right != null) {
queue.add(current.right);
}
i++;
}
}
return result;
} - 回溯搜索
在当前层判断了下一层的元素,应该不是最简单的逻辑,还可以再精简。
1 | private int result = 0; |
- 优化,当前层只处理当前层的值,不提前判断下一层的值
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
27private int result = 0;
private int maxHeight = 0;
public int findBottomLeftValue(TreeNode root) {
this.backtrack(root, 0);
return this.result;
}
private void backtrack(TreeNode root, int currentHeight) {
if (root == null) {
return;
}
// 叶子节点结束递归
if (root.left == null && root.right == null) {
// 隐藏着回溯,如果是当前层第一个节点,就保存结果
if (currentHeight + 1 > this.maxHeight) {
this.maxHeight = currentHeight + 1;
this.result = root.val;
}
return;
}
// 递归函数的第一个参数:下一层的节点
// 递归函数的第二个参数:加上本层的高度
// 总结:如果需要在参数中隐藏回溯,隐藏回溯的参数处理的是本层的值,其他参数都是下一层的初始化参数
backtrack(root.left, currentHeight + 1);
backtrack(root.right, currentHeight + 1);
}
合并二叉树
https://leetcode.cn/problems/merge-two-binary-trees/
1 | // 函数的意义就是合并两棵树,返回合并后的根节点 |
二叉搜索树中的搜索
https://leetcode.cn/problems/search-in-a-binary-search-tree/
1 | // 递归函数的意义,找到节点值等于val的节点并返回 |
路径总和
如果只搜索二叉树中满足条件的一条路径,找到后可以立即返回,需要返回值。
如果搜索整棵树,但需要处理递归的结果,需要返回值。
如果搜索整棵树,不需要处理递归结果,不需要返回值。
1 | public boolean hasPathSum(TreeNode root, int targetSum) { |
1 | private List<Integer> path = new ArrayList<>(); |
中序遍历与后序遍历构造二叉树
https://leetcode.cn/problems/construct-binary-tree-from-inorder-and-postorder-traversal/
先切割中序遍历的数组,根据切割后的中序遍历数组的长度,切割后续遍历数组
1 | public TreeNode buildTree(int[] inorder, int[] postorder) { |
前序遍历与中序遍历构造二叉树
https://leetcode.cn/problems/construct-binary-tree-from-preorder-and-inorder-traversal/
1 | public TreeNode buildTree(int[] preorder, int[] inorder) { |
最大二叉树
https://leetcode.cn/problems/maximum-binary-tree/
1 | public TreeNode constructMaximumBinaryTree(int[] nums) { |
最近公共祖先
需要搜索整棵树,但是需要处理递归结果,有返回值。
递归返回值
TreeNode helper(root, p, q)
递归终止条件
root 为空或p或q
递归
左节点递归
右节点递归
左右都不为空返回根
左不空返回左
右不空返回右
都为空返回空