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

114 Flatten Binary Tree to Linked List 二叉树转换链表

时间:2018-04-05 01:12:59      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:ret   str   htm   efi   lis   return   public   ble   tree   

给定一个二叉树,使用原地算法将它 “压扁” 成链表。
示例:
给出:
         1
        / \
       2   5
      / \   \
     3   4   6
压扁后变成如下:
   1
    \
     2
      \
       3
        \
         4
          \
           5
            \
             6
提示:
如果您细心观察该扁平树,则会发现每个节点的右侧子节点是以原二叉树前序遍历的次序指向下一个节点的。

详见:https://leetcode.com/problems/flatten-binary-tree-to-linked-list/description/

方法一:递归解法

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    void flatten(TreeNode* root) {
        if(root==nullptr)
        {
            return;
        }
        if(root->left)
        {
            flatten(root->left);
        }
        if(root->right)
        {
            flatten(root->right);
        }
        TreeNode *tmp=root->right;
        root->right=root->left;
        root->left=nullptr;
        while(root->right)
        {
            root=root->right;
        }
        root->right=tmp;
    }
};

 方法二:非递归解法

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    void flatten(TreeNode* root) {
        if(root==nullptr)
        {
            return;
        }
        TreeNode* cur=root;
        while(cur)
        {
            if(cur->left)
            {
                TreeNode *p=cur->left;
                while(p->right)
                {
                    p=p->right;
                }
                p->right=cur->right;
                cur->right=cur->left;
                cur->left=nullptr;
            }
            cur=cur->right;
        }
    }
};

 参考:https://www.cnblogs.com/grandyang/p/4293853.html

114 Flatten Binary Tree to Linked List 二叉树转换链表

标签:ret   str   htm   efi   lis   return   public   ble   tree   

原文地址:https://www.cnblogs.com/xidian2014/p/8719720.html

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