数据结构之树的相关问题

实验要求
  • 实现二叉树的抽象数据类型
  • 实现二叉树的建立的运算
  • 实现二叉树的遍历运算
  • 实现创建哈夫曼树的算法
实验代码
  • 实现二叉树的抽象数据类型
typedef struct BiTNode   //define tree Node
{   TElemType data;
    struct BiTNode *lchild,*rchild;
}BiTNode,*BiTree;
  • 实现二叉树的建立的运算
int CreateBiTree(BiTree &T) //CreateBiTree function()
{
    TElemType ch;
    cout<<"Please input data(/ for NULL node!):";
    cin>>ch;
    if(ch=='/') T=NULL;
    else{
        if(!(T=(BiTNode *)malloc(sizeof(BiTNode))))
        {
            cout<<"Overflow!";
            return(ERROR);
        }//end of if
        T->data=ch;
        CreateBiTree(T->lchild);
        CreateBiTree(T->rchild);
    }//end of else
    return(OK);
}//end of CreateBiTree function()
  • 实现二叉树的遍历运算(中序遍历)
int InOrderTravers(BiTree T) //InOrderTravers sub-function
{
    if(T)
    {
        if(InOrderTravers(T->lchild))
        {
            cout<data<<"->";
            if(InOrderTravers(T->rchild))   return 1;
        }//end of if lchild
        return 0;
    }//end of if T
    return 1;
}//end of InOrderTravers sub-function
  • 实现创建哈夫曼树的算法
void HuffmanCoding(HuffmanTree &HT,HuffmanCode&HC,int *w,int n) //sub-function
{
    int m,i,s1,s2,start,c,f;
    HuffmanTree p;
    if(n<=1) return;
    m=2*n-1;
    HT=(HuffmanTree)malloc((m+1)*sizeof(HTNode));
    for(p=HT+1,i=1;i<=n;++i,++p,++w)    //initial HT[1...n]
    {
        p->weight=*w;
        cout<weight<<" ";
        p->parent=0;
        p->lchild=0;
        p->rchild=0;
    }
    for(;i<=m;++i,++p)    //initial HT[n+1...2+n1]
    {
        p->weight=0;
        p->parent=0;
        p->lchild=0;
        p->rchild=0;
    }
    cout<

相关文章:
数据结构之栈(C语言版)
数据结构之图、广度优先搜索以及佛洛依德算法

你可能感兴趣的:(数据结构之树的相关问题)