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

Flatten Binary Tree to Linked List--LeetCode

时间:2015-04-09 10:38:07      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:c++   leetcode   算法   

题目:

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
思路:从遍历的顺序上是前序遍历的结果,那么使用前序遍历,在前序遍历的过程中改变树结构,对于当前节点,是作为一个新的链表的头部,然后递归调用初始化左子树,递归调用右子树,为了能够连接,还得记住链表的尾部,当前节点的右子树是左子树改造后的链表的头节点,左子树的尾部后端是右子树的头部。

在实现的时候需要注意,最后的连接需要注意查看是否为空的操作。

void helper_list(BinTree*& root,BinTree*& head,BinTree*& tail)
{
	if(root == NULL ||(root->right == NULL && root->left == NULL))
	{
		head = root;
		tail = root;
		return ;
	}
 	head = root;
	BinTree* left_head = root->left;
	head->left = NULL;
	BinTree* left_tail = NULL;
	
	BinTree* right_head = root->right;
	BinTree* right_tail = NULL;
	
	helper_list(left_head,left_head,left_tail);
	helper_list(right_head,right_head,right_tail);
	
	
	if(left_head != NULL)
		head->right = left_head;
	else
		head->right = right_head;
	
	if(left_tail != NULL)
		left_tail->right = right_head;
	
	if(right_tail != NULL)
		tail = right_tail;
	else
		tail = left_tail;
}

BinTree* LinkedList(BinTree* root)
{
	if(root == NULL)
		return NULL;
	BinTree * head=NULL,*tail=NULL;
	helper_list(root,head,tail);
	return head;
}







Flatten Binary Tree to Linked List--LeetCode

标签:c++   leetcode   算法   

原文地址:http://blog.csdn.net/yusiguyuan/article/details/44955343

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