程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> C#線索二叉樹

C#線索二叉樹

編輯:.NET實例教程

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();
}

}

}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved