二叉树(3)——线索化

#include<iostream>
using namespace std;
//线索标志,链表标志
typedef enum Flag
{
	Link,
	Thread
}TFlag;
//线索二叉树
typedef struct BiThrNode
{
	char data;
	struct BiThrNode *LChild,*RChild;
	TFlag LFlag,RFlag;
} BiThrTNode,*BiThrTree;

BiThrTree pre;
//中序线索化
void InThreading(BiThrTree p,BiThrTree &pre)
{
	if (p)
	{
		InThreading(p->LChild,pre);
		if (!p->LChild)
		{
			p->LFlag=Thread;
			p->LChild=pre;
		}
		if (!pre->RChild)
		{
			pre->RFlag=Thread;
			pre->RChild=p;
		}
		pre=p;
		InThreading(p->RChild,pre);
	}
}
//线索化二叉树
bool InOrderThreading(BiThrTree &Thrt,BiThrTree T)
{
	BiThrTree pre;
	if (!(Thrt=(BiThrTree)malloc(sizeof(BiThrTNode))))
		return false;
	Thrt->LFlag=Link;
	Thrt->RFlag=Thread;
	Thrt->RChild=Thrt;
	if (!T)
		Thrt->LChild=Thrt;
	else
	{
		Thrt->LChild=T;
		pre=Thrt;
		InThreading(T,pre);
		pre->RFlag=Thread;
		pre->RChild=Thrt;
		Thrt->RChild=pre;
	}
	return true;
}
//中序创建线索二叉树
bool InOrderCreate(BiThrTree &T)
{
	char data;
	cin>>data;
	if (data=='#')
	{
		T=NULL;
		return false;
	}
	else
	{
		if (!(T=(BiThrTree)malloc(sizeof(BiThrTNode))))
		{
			return false;
		}
		T->data=data;
		if(InOrderCreate(T->LChild))
			T->LFlag=Link;
		if(InOrderCreate(T->RChild))
			T->RFlag=Link;
	}
	return true;
}

//遍历线索二叉树
bool InOrderTraverse_Thr(BiThrTree T)
{
	BiThrTree p=T->LChild;
	while(p!=T)
	{
		while(p->LFlag==Link)
			p=p->LChild;
		printf("%c\n",p->data);
		while(p->RFlag==Thread&&p->RChild!=T)
		{
			p=p->RChild;
			printf("%c\n",p->data);
		}
		p=p->RChild;
	}
	return true;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值