二叉树转换为双向环形链表

二叉树的节点与双向环形链表的节点类似,均含有两个指向不同方向的指针,因此他们之间的转化是可以实现的。下面介绍一种递归的实现方法。由于方法比较简单,就直接上代码了

二叉树的建立

node* create(const string& s)
{
	node* res = new node;
	res->left = nullptr;
	res->right = nullptr;
	res->s = s;
	return res;
}
node* insert(node* root, const string& s)
{
	if(root == nullptr)
	{
		root = create(s);
		return root;
	}
	node* temp = root;
	while(temp!=nullptr)
	{
		if(temp->s > s)
		{
			if(temp->left == nullptr)
			{
				temp->left = create(s);
				return root;
			}
			else
				temp = temp->left;
		}
		else
		{
			if(temp->right == nullptr)
			{
				temp->right = create(s);
				return root;
			}
			temp = temp->right;
		}
	}
}

二叉树转换为链表

node* join_two_cycle(node* first, node* second)
{
	if(first == nullptr)
		return second;
	if(second == nullptr)
		return first;
	node* rail_first = first->left;
	node* rail_second = second->left;
	rail_first->right = second;
	second->left = rail_first;
	rail_second->right = first;
	first->left = rail_second;
	return first;
}
node* merge_to_list(node* x)
{
	if(x == nullptr)
		return nullptr;
	node* head_left = merge_to_list(x->left);
	node* head_right = merge_to_list(x->right);
	x->left = x;
	x->right = x;
	head_left = join_two_cycle(head_left,x);
	head_left = join_two_cycle(head_left,head_right);
	return head_left;
}

测试代码

#include <iostream>
#include <string>
#include <fstream>
using namespace std;
struct node
{
	string s;
	node* left;
	node* right;
};
node* insert(node* root, const string& s);
node* merge_to_list(node* x);
void main()
{
	ifstream in("data.txt");
	if(!in.good())
	{
		cout<<"Error"<<endl;
		exit(0);
	}
	node* root = nullptr;
	while(!in.eof())
	{
		string s;
		in>>s;
		root = insert(root,s);
	}
	node* head;
	head = merge_to_list(root);
	node* end = head->left;
	node* temp = head;
	while(temp != end)
	{
		cout<<temp->s<<" ";
		temp = temp->right;
	}
	cout<<end->s<<endl;
}
时间: 2024-10-28 23:57:02

二叉树转换为双向环形链表的相关文章

双向链表(4) - 排序二叉树转换为循环双向链表

构建一个递归函数treeToList(Node root),将一棵已排序的二叉树,调整内部指针,使之从外面看起来,是一个循环双向链表.其中前向指针存储在"small"区域,后向指针存储在"large"区域.链表需要进行调整进行升序排序,并返回链表头指针. 下面的这篇文章详细解释了这个转换的过程. http://cslibrary.stanford.edu/109/TreeListRecursion.html 以下是对这篇文章的翻译: The Great Tree-L

php实现单,双向链表,环形链表解决约瑟夫问题

传智播客PHP学院 韩顺平 PHP程序员玩转算法第一季  http://php.itcast.cn 聊天篇: 数学对我们编程来说,重不重要? 看你站在什么样的层次来说. 如果你应用程序开发,对数学要求不高 但是,如果你开发系统软件,比如(搜索/识别软件[图像,语言识别]/操作系统...)对数学高 建模.大量数学模型. 老师啊啊.我是学C++的.麻烦,谈哈对QT和MFC的看法嘛.前景什么的, 记住 : 打好基础,大有可为! 初中毕业能去传智学习吗? 学习It, 不管是java ,php ,c#,对

数据结构之---C语言实现二叉树的二叉链表存储表示

//二叉树的二叉链表存储表示 //杨鑫 #include <stdio.h> #include <stdlib.h> #define max(a, b) a > b ? a : b //自定义max()函数 typedef char TELemType; //定义结二叉树的构体 typedef struct BTree { TELemType data; struct BTree *lChild; struct BTree *rChild; }BinTree; //二叉树的创

二叉树的二叉链表表示和实现

二叉树的二叉链表存储结构 typedef struct BiTNode { TElemType data; BiTNode * lchild, *rchild;//左右孩子指针 }BiTNode, * BiTree; 二叉链表的22个基本操作 #define ClearBiTree DestroyBiTree//清空二叉树和销毁二叉树的操作一样 void InitBiTree(BiTree &T){ T = NULL; } void DestroyBiTree(BiTree &T){ if

【C++】双向线性链表容器的实现

// 双向线性链表容器 #include <cstring> #include <iostream> #include <stdexcept> using namespace std; // 链表类模板 template<typename T> class List { public: // 构造.析构.支持深拷贝的拷贝构造和拷贝赋值 List(void) : m_head(NULL), m_tail(NULL) {} ~List(void) { clear

环形链表---Java

/** * * @author Administrator * 功能:丢手帕问题 */ package com.litao; public class Demo4 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub CycLink cycLink = new CycLink(); cycLink.setLen(9); cycLink.createLin

算法题——二叉树转换为左单链表

题目:给定一棵二叉树,将所有的结点都放到左儿子的位置,即除了root结点外,每一个结点都是其他某一个结点的左儿子.不用保持某种顺序,不能递归,O(1)空间. 思路: 我的想法是,维持一个遍历指针p,另一个指针tail永远指向向左遍历到底的结点: 初始化p和tail都为root,开始循环: 如果p为叶子结点,则退出循环: 如果p没有右儿子,则向左下降一层: 如果p有右儿子,则tail向左遍历到底,将p的右子树挂到tail的左儿子上,p右儿子赋空值,然后向左下降一层. p每次下降一层时,tail从上

二叉树的二叉链表存储

1. 版本信息 (1)CentOS 6.4发行版64位,uname -a 显示如下: Linux localhost.localdomain 3.11.6 #1 SMP Sat Nov 2 23:25:40 KST 2013 x86_64 x86_64 x86_64 GNU/Linux (2)Eclipse: Version: Kepler Service Release 2 (3)Tomcat: apache-tomcat-7.0.53 (4)Mysql:      mysql-server-

约瑟夫问题 环形链表及递归

//--------------------环形链表 //#include <windows.h> //#include <iostream> //using namespace std; // //#define R 40//人数 //#define N 4//每隔多少删去一个节点 // //struct node //{ // int id; // node *next; //}; // //void initCircle(node *phead, int num) //{ /