描述

给你二叉树的根结点 root ,请你将它展开为一个单链表:

  • 展开后的单链表应该同样使用 TreeNode ,其中 right 子指针指向链表中下一个结点,而左子指针始终为 null 。
  • 展开后的单链表应该与二叉树 先序遍历 顺序相同。

示例 1:

输入:root = [1,2,5,3,4,null,6]
输出:[1,null,2,null,3,null,4,null,5,null,6]

示例 2:

输入:root = []
输出:[]


题解

这道题的具体解法,可参看 这篇文章

  1. /**
  2. * Definition for a binary tree node.
  3. * function TreeNode(val, left, right) {
  4. * this.val = (val===undefined ? 0 : val)
  5. * this.left = (left===undefined ? null : left)
  6. * this.right = (right===undefined ? null : right)
  7. * }
  8. */
  9. /**
  10. * @param {TreeNode} root
  11. * @return {void} Do not return anything, modify root in-place instead.
  12. */
  13. var flatten = function(root) {
  14. if (!root) return null
  15. flatten(root.left)
  16. flatten(root.right)
  17. let temp = root.right
  18. root.right = root.left
  19. root.left = null
  20. let ptr = root
  21. while (ptr.right) {
  22. ptr = ptr.right
  23. }
  24. ptr.right = temp
  25. return root
  26. };