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

[leetcode]114. Flatten Binary Tree to Linked List由二叉树构建链表

时间:2018-01-24 14:03:05      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:res   链表   int   lis   oid   col   tree   poll   roo   

/*
    先序遍历构建链表,重新构建树
     */
    LinkedList<Integer> list = new LinkedList<>();
    public void flatten(TreeNode root) {
        preOrder(root);
        TreeNode res = root;
        list.poll();
        while (!list.isEmpty())
        {
            res.right = new TreeNode(list.poll());
            res.left = null;
            res = res.right;
        }
    }
    public void preOrder(TreeNode root)
    {
        if (root==null)
            return;
        list.offer(root.val);
        preOrder(root.left);
        preOrder(root.right);
    }

 

[leetcode]114. Flatten Binary Tree to Linked List由二叉树构建链表

标签:res   链表   int   lis   oid   col   tree   poll   roo   

原文地址:https://www.cnblogs.com/stAr-1/p/8341045.html

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