首页 > 其他 > 详细

[leetcode] Flatten Binary Tree to Linked List

时间:2015-01-06 07:03:35      阅读:183      评论:0      收藏:0      [点我收藏+]

题目(Tree DFS)

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

For example,
Given

         1
        /        2   5
      / \        3   4   6

 

The flattened tree should look like:

   1
         2
             3
                 4
                     5
                         6

click to show hints.

 

题解:

比较有意思的一条tree的题

public class Solution {
    public void flatten(TreeNode root) {
        Stack<TreeNode> stack = new Stack<TreeNode>();
        TreeNode p=root;
        
        while(p!=null||!stack.empty())
        {
            if(p.right!=null)
               stack.push(p.right);
               
            if(p.left!=null)
            {
                p.right=p.left;
                p.left=null;
            }
            else if (!stack.empty())
            {
                TreeNode temp = stack.pop();
                p.right=temp;
            }
            p=p.right;
        }
    }
}

 

[leetcode] Flatten Binary Tree to Linked List

原文:http://www.cnblogs.com/fengmangZoo/p/4205008.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!