二叉树展开为链表
题目链接: https://leetcode.cn/problems/flatten-binary-tree-to-linked-list
解题思路:
按先序遍历树,节点存放到数组
遍历数组,将节点连接起来
复杂度分析
时间复杂度: 遍历了数组重所有节点,因此时间复杂度为
空间复杂度: 空间复杂度为。
最后更新于
题目链接: https://leetcode.cn/problems/flatten-binary-tree-to-linked-list
按先序遍历树,节点存放到数组
遍历数组,将节点连接起来
时间复杂度: 遍历了数组重所有节点,因此时间复杂度为
空间复杂度: 空间复杂度为。
最后更新于