C#线索二叉树

using System;

namespace BiThrTree
{
/// <summary>
/// 定义结点类:
/// </summary>
class BTNode
{
public char data;
public int ltag,rtag;//0表示线索,1表示结点
public BTNode lchild,rchild;
}
class BiThrTree
{
/// <summary>
/// 建立一棵新二叉树:
/// </summary>
/// <param name="T"></param>
static public void CreateBiThrTree(ref BTNode T)
{
char ch;
ch=(char)Console.Read();
if(ch=='#')
{
T=null;
}
else
{
T=new BTNode();
T.data=ch;
CreateBiThrTree(ref T.lchild);
CreateBiThrTree(ref T.rchild);
}
}
/// <summary>
/// 线索化二叉树:
/// </summary>
/// <param name="T"></param>
static BTNode pre,H;
static public void Threading(ref BTNode T)
{
H=pre=new BTNode();
pre.rchild=pre.lchild=null;
pre.rtag=pre.ltag=0;
Thread(ref T);
}
static public void Thread(ref BTNode T)
{
if(T!=null)
{
if(T.lchild==null){T.lchild=pre;T.ltag=0;}
else{T.ltag=1;}
if(T.rchild==null){T.rtag=0;}
else{T.rtag=1;}
if(pre.rchild==null&&pre.rtag==0)pre.rchild=T;
pre=T;
if(T.ltag==1)Thread(ref T.lchild);
if(T.rtag==1)Thread(ref T.rchild);
}
}
/// <summary>
/// 先序输出:
/// </summary>
static public void PrePrint(BTNode T)
{
if(T!=null)
{
Console.Write(T.data+"\t");
if(T.ltag==1)PrePrint(T.lchild);
if(T.rtag==1)PrePrint(T.rchild);
}
}
/// <summary>
/// 先序线索遍历输出:
/// </summary>
static public void PreThrPrint(BTNode T)
{
T=H.rchild;
//Console.WriteLine("H.rchild.date::"+H.rchild.data);
while(T!=null)
{
Console.Write(T.data+"\t");
if(T.rtag==0)T=T.rchild;
else{
if(T.ltag==1)T=T.lchild;
else{
T=T.rchild;
}
}
}
}
/// <summary>
/// Deepth of a BiThrTree:
/// </summary>
static public int Deepth(BTNode T)
{
int a,b;
if(T!=null)
{
if(T.ltag==1)a=Deepth(T.lchild);else a=0;
if(T.rtag==1)b=Deepth(T.rchild);else b=0;
return (1+max(a,b));
}
else
{
return 0;
}
}
static public int max(params int[] w)
{
int max;
max=w[0];
for(int i=0;i<w.Length;i++)
if(max<w[i])max=w[i];
return max;
}
/// <summary>
/// 复制线索二叉树:
/// </summary>
static public void DulplicateBiThrTree(BTNode T1,ref BTNode T2)
{
if(T1!=null)
{
T2=new BTNode();
T2.data=T1.data;
T2.ltag=T1.ltag;T2.rtag=T1.rtag;
if(T2.ltag==1)DulplicateBiThrTree(T1.lchild,ref T2.lchild);else T2.lchild=T1.lchild;
if(T2.rtag==1)DulplicateBiThrTree(T1.rchild,ref T2.rchild);else T2.rchild=T1.rchild;
}
}

static void Main()
{
BTNode mytree=null;
Console.WriteLine("Please input a tree(for example:abc##d##ed###):");
CreateBiThrTree(ref mytree);
Threading(ref mytree);
PrePrint(mytree);
Console.WriteLine("\n按先序输出:\n");
PreThrPrint(mytree);
Console.WriteLine("\n该树的深度为:{0}",Deepth(mytree));
BTNode mytree2=null;
Console.WriteLine("调用复制函数得到的新树为:");
DulplicateBiThrTree(mytree,ref mytree2);
PrePrint(mytree2);
Console.ReadLine();
Console.ReadLine();
}

}

}

时间: 2024-11-05 06:13:46

C#线索二叉树的相关文章

PHP实现二叉树/线索二叉树

PHP实现二叉树.线索二叉树,如下代码: <?php      require 'biTree.php';        $str = 'ko#be8#tr####acy#####';           $tree = new BiTree($str);      $tree->createThreadTree();        echo $tree->threadList() . "\n";从第一个结点开始遍历线索二叉树      echo $tree->

大话数据结构十五:线索二叉树

1. 什么是线索二叉树? n个结点的二叉链表中含有(2n-(n-1)=n+1个空指针域.利用二叉链表中的空指针域,存放指向结点在某种遍历次序下的前驱和后继结点的指针 (这种附加的指针称为"线索").这种加上了线索的二叉链表称为线索链表,相应的二叉树称为线索二叉树. 2. 为什么要加线索? ① 很多空指针域没有存储任何事物,对内存资源是一种浪费. ② 二叉链表中,我们只能知道每个结点指向其左右孩子结点的地址,却不知道每个结点的前驱是谁,后继是谁. ③ 线索链表解决了无法直接找到该结点在某

数据结构的C++实现之线索二叉树

我们知道满二叉树只是一种特殊的二叉树,大部分二叉树的结点都是不完全存在左右孩子的,即很多指针域没有被充分 地利用.另一方面我们在对一棵二叉树做某种次序遍历的时候,得到一串字符序列,遍历过后,我们可以知道结点之间的前 驱后继关系,也就是说,我们可以很清楚地知道任意一个结点,它的前驱和后继是哪一个.可是这是建立在已经遍历过的基 础之上的.在二叉链表上,我们只能知道每个结点指向其左右孩子结点的地址,而不知道某个结点的前驱是谁,后继是谁. 要想知道,必须遍历一次.以后每次需要知道时,都必须遍历一次.为什

算法速成(十二)树操作之线索二叉树

先前说了树的基本操作,我们采用的是二叉链表来保存树形结构,当然二叉有二叉的困扰之处,比 如我想找到当前结点 的"前驱"和"后继",那么我们就必须要遍历一下树,然后才能定位到 该"节点"的"前驱"和"后继",每次定位都是O(n),这 不是我们想看到的,那么有什么 办法来解决呢? (1) 在节点域中增加二个指针域,分别保存"前驱"和"后继",那么就 是四叉链表了,哈哈,还

在练习1中你已经定义了一个双向链表,请用它构造一个线索二叉树

问题描述 在练习1中你已经定义了一个双向链表,请用它构造一个线索二叉树 在练习1中你已经定义了一个双向链表,请用它构造一个线索二叉树 解决方案 http://blog.chinaunix.net/uid-26548237-id-3476920.html 解决方案二: 将排序二叉树转换成双向链表 解决方案三: 将一个二叉树转化为双向链表,不开辟新空间

关于线索二叉树的问题

问题描述 关于线索二叉树的问题 我想要进行线索二叉树的中序遍历,为什么我的这个程序编译通过却无法运行? //binthr.h template class binthrnode { public: binthrnode() //创建一个空结点 { lchild=rchild=NULL; } binthrnode(T e) { data=e; lchild=rchild=NULL; } binthrnode<T> *makebthrtree(binthrnode *bt); //生成二叉链表 v

PHP实现的线索二叉树及二叉树遍历方法详解_php技巧

本文实例讲述了PHP实现的线索二叉树及二叉树遍历方法.分享给大家供大家参考,具体如下: <?php require 'biTree.php'; $str = 'ko#be8#tr####acy#####'; $tree = new BiTree($str); $tree->createThreadTree(); echo $tree->threadList() . "\n";从第一个结点开始遍历线索二叉树 echo $tree->threadListReserv

线索二叉树的线索话和前序遍历,使用C++的实现,数据结构大试题,谢谢

问题描述 线索二叉树的线索话和前序遍历,使用C++的实现,数据结构大试题,谢谢 线索二叉树的线索话和前序遍历,使用C++的实现,数据结构大试题,谢谢 解决方案 http://blog.csdn.net/shifuwawa/article/details/4647727 解决方案二: http://blog.csdn.net/algorithm_only/article/details/6991254

后序线索二叉树怎么画 求图

问题描述 后序线索二叉树怎么画 求图 已知 后序遍历为 FDBGHECA 先序遍历 为 ABDFCEGH 中序为 BFDAGEHC 求画图 解决方案 http://zhidao.baidu.com/link?url=74xvMvCr9ceQUhJ-i43oDFWEGjnewmWmr-zpSfIymX_LFz_J0SI2tMgG4oZunGcOTOQij8edvcr3wEnXRgJUKLdR16cM3tmYa_iVSSM1ZqS