博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
114. Flatten Binary Tree to Linked List - Medium
阅读量:6088 次
发布时间:2019-06-20

本文共 869 字,大约阅读时间需要 2 分钟。

Given a binary tree, flatten it to a linked list in-place.

For example, given the following tree:

1   / \  2   5 / \   \3   4   6

The flattened tree should look like:

1 \  2   \    3     \      4       \        5         \          6

 

每个节点的右节点都是preorder traverse的下一个节点 -> 应该先 反preorder遍历 (即node.right->node.left->node) 到最后,从最后开始relink

time: O(n), space: O(height)

/** * Definition for a binary tree node. * public class TreeNode { *     int val; *     TreeNode left; *     TreeNode right; *     TreeNode(int x) { val = x; } * } */class Solution {    TreeNode prev = null;        public void flatten(TreeNode root) {        if(root == null) {            return;        }                flatten(root.right);        flatten(root.left);                root.right = prev;        root.left = null;        prev = root;    }}

 

转载于:https://www.cnblogs.com/fatttcat/p/10202108.html

你可能感兴趣的文章
eolinker API-Shop “世界气象日”天气接口专题
查看>>
Cron表达式简介
查看>>
.net core权限认证
查看>>
eyoucms如何管理栏目
查看>>
车联网上云最佳实践(一)
查看>>
IO输入输出(InputSream、OutputStream)
查看>>
Centos7安装CRM过程(基于易迈云)
查看>>
短网址助力下的短信营销要做到的三点
查看>>
事务机制和锁机制
查看>>
酷派8705救砖
查看>>
视频会议系统有哪些部分组成?
查看>>
第四周 学习记录
查看>>
C# 完美实现×××控制
查看>>
Issue和PR标签(Kubernetes社区Issue和PR标签解释)
查看>>
老子道德经之利他主义
查看>>
You don't have permission to access /index.php on this server.
查看>>
xtrabackup 使用方法
查看>>
python 实现线程池
查看>>
监控 SQL Server 的运行状况
查看>>
C# Socket编程
查看>>