一、第一期

1.反转二叉树(226)

image.png

  1. class Solution {
  2. // 将整棵树的节点翻转
  3. public TreeNode invertTree(TreeNode root) {
  4. // base case
  5. if (root == null) {
  6. return null;
  7. }
  8. /****前序遍历位置****/
  9. // 对于 root 节点,需要交换它的左右子节点
  10. TreeNode tmp = root.left;
  11. root.left = root.right;
  12. root.right = tmp;
  13. // 递归框架,遍历并交换子树所有节点
  14. invertTree(root.left);
  15. invertTree(root.right);
  16. return root;
  17. }
  18. }

2.填充每个节点下的右侧节点指针(116)

image.png
image.png
⽽且题⽬说了,输⼊是⼀棵「完美⼆叉树」,形象地说整棵⼆叉树是⼀个正三⻆形,除了最右侧的节点 next
指针会指向 null,其他节点的右侧⼀定有相邻的节点。
这道题怎么做呢?把每⼀层的节点穿起来,是不是只要把每个节点的左右⼦节点都穿起来就⾏了?
我们可以模仿上⼀道题,写出如下代码:

  1. Node connect(Node root) {
  2. if (root == null || root.left == null) {
  3. return root;
  4. }
  5. root.left.next = root.right;
  6. connect(root.left);
  7. connect(root.right);
  8. return root;
  9. }

节点 5 和节点 6 不属于同⼀个⽗节点,那么按照这段代码的逻辑,它俩就没办法被穿起来,这是不符合题意的

  1. class Solution {
  2. public Node connect(Node root) {
  3. if (root == null) return null;
  4. connectTwoNode(root.left, root.right);
  5. return root;
  6. }
  7. // 辅助函数
  8. void connectTwoNode(Node node1, Node node2) {
  9. if (node1 == null || node2 == null) {
  10. return;
  11. }
  12. /****前序遍历位置****/
  13. // 将传入的两个节点连接
  14. node1.next = node2;
  15. // 连接相同父节点的两个子节点
  16. connectTwoNode(node1.left, node1.right);
  17. connectTwoNode(node2.left, node2.right);
  18. // 连接跨越父节点的两个子节点
  19. connectTwoNode(node1.right, node2.left);
  20. }
  21. }

3.二叉树展开为链表(114)

image.png
前文 手把手刷二叉树总结篇 说过二叉树的递归算法可以分两类,一类是遍历二叉树的类型,一类是分解子问题的类型。
前者较简单,只要运用二叉树的递归遍历框架即可;后者的关键在于明确递归函数的定义,然后利用这个定义。
这题属于后者,flatten 函数的定义:
给 flatten 函数输入一个节点 root,那么以 root 为根的二叉树就会被拉平为一条链表
如何利用这个定义来完成算法?你想想怎么把以 root 为根的二叉树拉平为一条链表?
很简单,以下流程:
1、将 root 的左子树和右子树拉平。
2、将 root 的右子树接到左子树下方,然后将整个左子树作为右子树。
二、树 - 图5
注意:一定不要忘了把左子树置空root.left=null;

  1. class Solution {
  2. // 定义:将以 root 为根的树拉平为链表
  3. public void flatten(TreeNode root) {
  4. // base case
  5. if (root == null) return;
  6. // 先递归拉平左右子树
  7. flatten(root.left);
  8. flatten(root.right);
  9. /****后序遍历位置****/
  10. // 1、左右子树已经被拉平成一条链表
  11. TreeNode left = root.left;
  12. TreeNode right = root.right;
  13. // 2、将左子树作为右子树
  14. root.left = null;
  15. root.right = left;
  16. // 3、将原先的右子树接到当前右子树的末端
  17. TreeNode p = root;
  18. while (p.right != null) {
  19. p = p.right;
  20. }
  21. p.right = right;
  22. }
  23. }

二、第二期

1.最大二叉树(654)

image.png

  1. class Solution {
  2. /* 主函数 */
  3. public TreeNode constructMaximumBinaryTree(int[] nums) {
  4. return build(nums, 0, nums.length - 1);
  5. }
  6. /* 定义:将 nums[lo..hi] 构造成符合条件的树,返回根节点 */
  7. TreeNode build(int[] nums, int lo, int hi) {
  8. // base case
  9. if (lo > hi) {
  10. return null;
  11. }
  12. // 找到数组中的最大值和对应的索引
  13. int index = -1, maxVal = Integer.MIN_VALUE;
  14. for (int i = lo; i <= hi; i++) {
  15. if (maxVal < nums[i]) {
  16. index = i;
  17. maxVal = nums[i];
  18. }
  19. }
  20. TreeNode root = new TreeNode(maxVal);
  21. // 递归调用构造左右子树
  22. root.left = build(nums, lo, index - 1);
  23. root.right = build(nums, index + 1, hi);
  24. return root;
  25. }
  26. }

2.从前序与中序遍历序列构造二叉树(105)

image.png
image.png
image.png

  1. class Solution {
  2. // 存储 inorder 中值到索引的映射
  3. HashMap<Integer, Integer> valToIndex = new HashMap<>();
  4. public TreeNode buildTree(int[] preorder, int[] inorder) {
  5. for (int i = 0; i < inorder.length; i++) {
  6. valToIndex.put(inorder[i], i);
  7. }
  8. return build(preorder, 0, preorder.length - 1,
  9. inorder, 0, inorder.length - 1);
  10. }
  11. /*
  12. 定义:前序遍历数组为 preorder[preStart..preEnd],
  13. 中序遍历数组为 inorder[inStart..inEnd],
  14. 构造这个二叉树并返回该二叉树的根节点
  15. */
  16. TreeNode build(int[] preorder, int preStart, int preEnd,
  17. int[] inorder, int inStart, int inEnd) {
  18. if (preStart > preEnd) {
  19. return null;
  20. }
  21. // root 节点对应的值就是前序遍历数组的第一个元素
  22. int rootVal = preorder[preStart];
  23. // rootVal 在中序遍历数组中的索引
  24. int index = valToIndex.get(rootVal);
  25. int leftSize = index - inStart;
  26. // 先构造出当前根节点
  27. TreeNode root = new TreeNode(rootVal);
  28. // 递归构造左右子树
  29. root.left = build(preorder, preStart + 1, preStart + leftSize,
  30. inorder, inStart, index - 1);
  31. root.right = build(preorder, preStart + leftSize + 1, preEnd,
  32. inorder, index + 1, inEnd);
  33. return root;
  34. }
  35. }
  36. // 详细解析参见:
  37. // https://labuladong.gitee.io/article/?qno=105

3.从中序与后序遍历序列构造二叉树(106)

image.png
image.png
image.png
image.png

  1. class Solution {
  2. // 存储 inorder 中值到索引的映射
  3. HashMap<Integer, Integer> valToIndex = new HashMap<>();
  4. public TreeNode buildTree(int[] inorder, int[] postorder) {
  5. for (int i = 0; i < inorder.length; i++) {
  6. valToIndex.put(inorder[i], i);
  7. }
  8. return build(inorder, 0, inorder.length - 1,
  9. postorder, 0, postorder.length - 1);
  10. }
  11. /*
  12. 定义:
  13. 中序遍历数组为 inorder[inStart..inEnd],
  14. 后序遍历数组为 postorder[postStart..postEnd],
  15. 构造这个二叉树并返回该二叉树的根节点
  16. */
  17. TreeNode build(int[] inorder, int inStart, int inEnd,
  18. int[] postorder, int postStart, int postEnd) {
  19. if (inStart > inEnd) {
  20. return null;
  21. }
  22. // root 节点对应的值就是后序遍历数组的最后一个元素
  23. int rootVal = postorder[postEnd];
  24. // rootVal 在中序遍历数组中的索引
  25. int index = valToIndex.get(rootVal);
  26. // 左子树的节点个数
  27. int leftSize = index - inStart;
  28. TreeNode root = new TreeNode(rootVal);
  29. // 递归构造左右子树
  30. root.left = build(inorder, inStart, index - 1,
  31. postorder, postStart, postStart + leftSize - 1);
  32. root.right = build(inorder, index + 1, inEnd,
  33. postorder, postStart + leftSize, postEnd - 1);
  34. return root;
  35. }
  36. }

4. 通过后序和前序遍历结果构造⼆叉树 (889)

这道题和前两道题有⼀个本质的区别:
通过前序中序,或者后序中序遍历结果可以确定⼀棵原始⼆叉树,但是通过前序后序遍历结果⽆法确定原始 ⼆叉树。
题⽬也说了,如果有多种可能的还原结果,你可以返回任意⼀种。
为什么呢?我们说过,构建⼆叉树的套路很简单,先找到根节点,然后找到并递归构造左右⼦树即可。
前两道题,可以通过前序或者后序遍历结果找到根节点,然后根据中序遍历结果确定左右⼦树。
这道题,你可以确定根节点,但是⽆法确切的知道左右⼦树有哪些节点。
举个例⼦,下⾯这两棵树结构不同,但是它们的前序遍历和后序遍历结果是相同的:

image.png
不过话说回来,⽤后序遍历和前序遍历结果还原⼆叉树,解法逻辑上和前两道题差别不⼤,也是通过控制左 右⼦树的索引来构建:
1、⾸先把前序遍历结果的第⼀个元素或者后序遍历结果的最后⼀个元素确定为根节点的值。
2、然后把前序遍历结果的第⼆个元素作为左⼦树的根节点的值。
3、在后序遍历结果中寻找左⼦树根节点的值,从⽽确定了左⼦树的索引边界,进⽽确定右⼦树的索引边 界,递归构造左右⼦树即可。
image.png

  1. class Solution {
  2. // 存储 postorder 中值到索引的映射
  3. HashMap<Integer, Integer> valToIndex = new HashMap<>();
  4. public TreeNode constructFromPrePost(int[] preorder, int[] postorder) {
  5. for (int i = 0; i < postorder.length; i++) {
  6. valToIndex.put(postorder[i], i);
  7. }
  8. return build(preorder, 0, preorder.length - 1,
  9. postorder, 0, postorder.length - 1);
  10. }
  11. // 定义:根据 preorder[preStart..preEnd] 和 postorder[postStart..postEnd]
  12. // 构建二叉树,并返回根节点。
  13. TreeNode build(int[] preorder, int preStart, int preEnd,
  14. int[] postorder, int postStart, int postEnd) {
  15. if (preStart > preEnd) {
  16. return null;
  17. }
  18. if (preStart == preEnd) {
  19. return new TreeNode(preorder[preStart]);
  20. }
  21. // root 节点对应的值就是前序遍历数组的第一个元素
  22. int rootVal = preorder[preStart];
  23. // root.left 的值是前序遍历第二个元素
  24. // 通过前序和后序遍历构造二叉树的关键在于通过左子树的根节点
  25. // 确定 preorder 和 postorder 中左右子树的元素区间
  26. int leftRootVal = preorder[preStart + 1];
  27. // leftRootVal 在后序遍历数组中的索引
  28. int index = valToIndex.get(leftRootVal);
  29. // 左子树的元素个数
  30. int leftSize = index - postStart + 1;
  31. // 先构造出当前根节点
  32. TreeNode root = new TreeNode(rootVal);
  33. // 递归构造左右子树
  34. // 根据左子树的根节点索引和元素个数推导左右子树的索引边界
  35. root.left = build(preorder, preStart + 1, preStart + leftSize,
  36. postorder, postStart, index);
  37. root.right = build(preorder, preStart + leftSize + 1, preEnd,
  38. postorder, index + 1, postEnd - 1);
  39. return root;
  40. }
  41. }

代码和前两道题⾮常类似,我们可以看着代码思考⼀下,为什么通过前序遍历和后序遍历结果还原的⼆叉树 可能不唯⼀呢? 关键在这⼀句:

  1. int leftRootVal = preorder[preStart + 1];

我们假设前序遍历的第⼆个元素是左⼦树的根节点,但实际上左⼦树可能是空指针,这个元素可能是右⼦树 的根节点。 由于这⾥⽆法确切进⾏判断,所以导致了最终答案的不唯⼀。 ⾄此,通过前序和后序遍历结果还原⼆叉树的问题也解决了。

三、第三期

1.寻找重复的子树(652)

image.png

基本思路

比如说,你站在图中这个节点 2 上:
image.png
如果你想知道以自己为根的子树是不是重复的,是否应该被加入结果列表中,你需要知道什么信息?
你需要知道以下两点
1、以我为根的这棵二叉树(子树)长啥样
2、以其他节点为根的子树都长啥样
这就叫知己知彼嘛,我得知道自己长啥样,还得知道别人长啥样,然后才能知道有没有人跟我重复,对不对?
我怎么知道自己以我为根的二叉树长啥样?前文 序列化和反序列化二叉树 其实写过了,二叉树的前序/中序/后序遍历结果可以描述二叉树的结构。
我咋知道其他子树长啥样?每个节点都把以自己为根的子树的样子存到一个外部的数据结构里即可。
按照这个思路看代码就不难理解了。

  1. class Solution {
  2. // 记录所有子树以及出现的次数
  3. HashMap<String, Integer> memo = new HashMap<>();
  4. // 记录重复的子树根节点
  5. LinkedList<TreeNode> res = new LinkedList<>();
  6. /* 主函数 */
  7. public List<TreeNode> findDuplicateSubtrees(TreeNode root) {
  8. traverse(root);
  9. return res;
  10. }
  11. String traverse(TreeNode root) {
  12. if (root == null) {
  13. return "#";
  14. }
  15. String left = traverse(root.left);
  16. String right = traverse(root.right);
  17. String subTree = left + "," + right + "," + root.val;
  18. int freq = memo.getOrDefault(subTree, 0);
  19. // 多次重复也只会被加入结果集一次
  20. if (freq == 1) {
  21. res.add(root);
  22. }
  23. // 给子树对应的出现次数加一
  24. memo.put(subTree, freq + 1);
  25. return subTree;
  26. }
  27. }