码迷,mamicode.com
首页 > 其他好文 > 详细

Flatten Binary Tree to Linked List

时间:2015-03-29 12:05:49      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

Flatten Binary Tree to Linked List

问题:

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

思路:

  前序pre-order遍历+prenode

我的代码:

技术分享
public class Solution {
    public void flatten(TreeNode root) {
        if(root == null)    return;
        if(pre != null)
        {
            pre.left = null;
            pre.right = root;
        }
        pre = root;
        TreeNode left = root.left;
        TreeNode right = root.right;
        flatten(left);
        flatten(right);
    }
    TreeNode pre = null;
}
View Code

学习之处:

  • 转换成常见的前序遍历问题,然后再加上一个prenode指针就齐活了。

Flatten Binary Tree to Linked List

标签:

原文地址:http://www.cnblogs.com/sunshisonghit/p/4375440.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!