二叉树类的定义、实现以及应用

本例程实现二叉树的二叉链表存储结构类的定义、实现、应用以及Huffman树,包括:

三种构造函数:

1、键盘输入扩展二叉树的前序序列构造二叉树

2、由扩展二叉树的前序遍历序列s构造二叉树

3、由扩展二叉树的前序遍历序列sp,中序遍历序列sm构造二叉树

析构函数:释放二叉链表中各结点的存储空间

获得指向根结点的指针

二叉树的遍历:

1、前中后序遍历二叉树的递归实现

2、前中后序遍历二叉树的非递归实现,后序遍历二叉树只进一次栈的非递归实现

3、层序遍历二叉树

应用:

1、求二叉树结点个数

2、前序遍历顺序输出二叉树叶子结点

3、非递归中序遍历顺序输出二叉树叶子结点

4、求二叉树的高度

5、计算二叉树中有所有叶子结点的和

6、Huffman树

#include
#include
#include
using namespace std;
int m=0;
template
struct BiNode   //二叉树的结点结构
{
  T data;
  BiNode *lchild, *rchild;
};
template
struct BiNodeTag   //用于后序遍历二叉树非递归实现(2次进栈)的结点结构
{
  char tag;
  BiNode *pt;
};

template
class BiTree
{ //二叉树类
public:
    BiTree( );       //构造函数,键盘输入扩展二叉树的前序序列构造二叉树
    BiTree(char *s); //构造函数,由扩展二叉树的前序遍历序列s构造二叉树
    BiTree(string sp,string sm); //构造函数,由扩展二叉树的前序遍历序列sp,中序遍历序列sm构造二叉树
    ~BiTree(void);         //析构函数,释放二叉链表中各结点的存储空间
    BiNode* Getroot();  //获得指向根结点的指针
    void PreOrder(BiNode *root);     //前序遍历二叉树递归
    void PreOrder0(BiNode *root);    //前序遍历二叉树非递归
    void InOrder(BiNode *root);      //中序遍历二叉树递归
    void InOrder0(BiNode *root);    //中序遍历二叉树非递归
    void PostOrder(BiNode *root);    //后序遍历二叉树递归
    void PostOrder0(BiNode *root);    //后序遍历二叉树非递归
    void PostOrder1(BiNode *root);    //后序遍历二叉树非递归1,只进一次栈
    void LevelOrder(BiNode *root);   //层序遍历二叉树
private:
    BiNode *root;         //指向根结点的头指针
    BiNode *Creat();     //无参构造函数调用
    BiNode *Creat(char *s);     //有参构造函数调用
    BiNode *Creat(string sp,string sm);     //有参构造函数调用
    void Release(BiNode *root);   //析构函数调用
};


/*
 *前置条件:二叉树不存在
 *输    入:无
 *功    能:构造一棵二叉树
 *输    出:无
 *后置条件:产生一棵二叉树
 */
template
BiTree::BiTree(char *s )
{
    m=0;
    root = Creat(s);
}
template
BiTree::BiTree( )
{
    root = Creat();
}
template
BiTree::BiTree(string sp,string sm )
{
    root = Creat(sp,sm);
}
/*
 *前置条件:二叉树已存在
 *输    入:无
 *功    能:释放二叉链表中各结点的存储空间
 *输    出:无
 *后置条件:二叉树不存在
 */
template
BiTree::~BiTree(void)
{
    Release(root);
}
/*
 *前置条件:二叉树已存在
 *输    入:无
 *功    能:获取指向二叉树根结点的指针
 *输    出:指向二叉树根结点的指针
 *后置条件:二叉树不变
 */
template
BiNode* BiTree::Getroot( )
{
    return root;
}
/*
 *前置条件:二叉树已存在
 *输    入:无
 *功    能:前序遍历二叉树
 *输    出:二叉树中结点的一个线性排列
 *后置条件:二叉树不变
 */
template
void BiTree::PreOrder(BiNode *root)
{
    if(root==NULL)  return;
    else{
        cout<data<<" ";
        PreOrder(root->lchild);
        PreOrder(root->rchild);
    }
}

/*
 *前置条件:二叉树已存在
 *输    入:无
 *功    能:中序遍历二叉树
 *输    出:二叉树中结点的一个线性排列
 *后置条件:二叉树不变
 */
template
void BiTree::InOrder (BiNode *root)
{
    if (root==NULL)  return;      //递归调用的结束条件
    else{
        InOrder(root->lchild);    //中序递归遍历root的左子树
        cout<data<<" ";    //访问根结点的数据域
        InOrder(root->rchild);    //中序递归遍历root的右子树
    }
}
/*
 *前置条件:二叉树已存在
 *输    入:无
 *功    能:后序遍历二叉树
 *输    出:二叉树中结点的一个线性排列
 *后置条件:二叉树不变
 */
template
void BiTree::PostOrder(BiNode *root)
{
    if (root==NULL)   return;       //递归调用的结束条件
    else{
        PostOrder(root->lchild);    //后序递归遍历root的左子树
        PostOrder(root->rchild);    //后序递归遍历root的右子树
        cout<data<<" ";      //访问根结点的数据域
    }
}

/*
 *前置条件:二叉树已存在
 *输    入:无
 *功    能:层序遍历二叉树
 *输    出:二叉树中结点的一个线性排列
 *后置条件:二叉树不变
 */
template
void BiTree::LevelOrder(BiNode *root)
{
    const int MaxSize = 100;

    int front = 0;
    int rear = 0;  //采用顺序队列,并假定不会发生上溢

    BiNode* Q[MaxSize];
    BiNode* q;

    if (root==NULL) return;
    else{
        Q[rear++] = root;
        while (front != rear)
        {
            q = Q[front++];
             cout<data<<" ";
            if (q->lchild != NULL)    Q[rear++] = q->lchild;
            if (q->rchild != NULL)    Q[rear++] = q->rchild;
        }
    }
}

/*
 *前置条件:空二叉树
 *输    入:数据ch;
 *功    能:初始化一棵二叉树,构造函数调用
 *输    出:无
 *后置条件:产生一棵二叉树
 */
//int m=0;
template
BiNode* BiTree::Creat(char *s)
{
    BiNode* root;
    char ch=s[m++];
    //cout<<"请输入创建一棵二叉树的结点数据"<     //cin>>ch;
    if (ch=='#') root = NULL;
    else{
         root = new BiNode;       //生成一个结点
         root->data=ch;
         root->lchild = Creat(s );    //递归建立左子树
         root->rchild = Creat(s );    //递归建立右子树
    }
    return root;
}
template
BiNode* BiTree::Creat(string sp,string sm)
{
    BiNode* root=NULL;
    if(sp.length() > 0)
    {
        root=new BiNode ;
        root->data=sp[0];
        int index=sm.find(sp[0]);
        string in_left_str=sm.substr(0, index);
        string in_right_str=sm.substr(index+1);
        string pre_left_str=sp.substr(1, index);
        string pre_right_str=sp.substr(index+1);
        root->lchild = Creat(pre_left_str, in_left_str);    //递归建立左子树
        root->rchild = Creat(pre_right_str, in_right_str);    //递归建立右子树
    }
    return root;
}
template
BiNode* BiTree ::Creat()
{   BiNode* root;
    char ch;
    cout<<"Input a char: ";
    cin>>ch;
    if (ch=='#')     root=NULL;
    else {
        root=new BiNode;
        root->data=ch;
        root-> lchild=Creat();
        root-> rchild=Creat();
    }
 return root;
}

/*
 *前置条件:二叉树已经存在
 *输    入:无
 *功    能:释放二叉树的存储空间,析构函数调用
 *输    出:无
 *后置条件:二叉树不存在
 */
template
void BiTree::Release(BiNode* root)
{
  if (root != NULL){
      Release(root->lchild);   //释放左子树
      Release(root->rchild);   //释放右子树
      delete root;
  }
}

template
void BiTree::PreOrder0(BiNode *root)
{//前序遍历二叉树非递归
    const int MaxStackSize=100;
    BiNode *S[MaxStackSize];
    int top= -1;   // 构造空栈,采用顺序栈,并假定不会发生上溢
    while (root!=NULL||top!= -1)
     {
         while (root!= NULL)
         {
             cout<data;
             S[++top]=root;;
             root=root->lchild;
         }
         if (top!= -1) {
             root=S[top--];
             root=root->rchild;
         }
     }
}
template
void BiTree::InOrder0(BiNode *root)
{//中序遍历二叉树非递归
    const int MaxStackSize=100;
    BiNode *S[MaxStackSize];
    int top= -1;   // 构造空栈,采用顺序栈,并假定不会发生上溢
    while (root!=NULL||top!= -1)
     {
         while (root!= NULL)
         {
             S[++top]=root;
             root=root->lchild;
         }
         if (top!= -1) {
             root=S[top--];cout<data;
             root=root->rchild;
         }
     }
}
template
void BiTree::PostOrder0(BiNode *root)
{//二叉树后序遍历非递归 2次入栈
    const int MaxStackSize=100;
    BiNodeTag S[MaxStackSize];
    BiNodeTag p;
    int top= -1;   // 构造空栈,采用顺序栈,并假定不会发生上溢
    while (root!=NULL||top!= -1)
     {
       while (root!= NULL)
        {
          p.pt=root;p.tag='L';
          S[++top]=p;
          root=root->lchild;
         }
       if (top!= -1) {
          p=S[top--];
          if(p.tag=='L'){p.tag='R';S[++top]=p;root=p.pt->rchild;}
          else if(p.tag=='R'){cout<data;//root=NULL;
          }
          }
     }
}

template
void BiTree::PostOrder1(BiNode *root)//后序遍历二叉树非递归1,只进一次栈
{
    //二叉树后序遍历非递归 一次入栈:
    //后序遍历在中序的双层循环的基础上需要加入一个记录记录上一次出栈的节点。步骤如下:
    //1、如果栈顶元素非空且左孩子存在,将左孩子入栈,重复该过程。若不存在则进入第2步(该过程和中序遍历一致)
    //2、判断上一次出栈节点是否当前节点的右孩子,或者当前节点是否存在右孩子,满足任一条件,将当前节点输出,并出栈。否则将右节点压栈。跳至第1步
    const int MaxStackSize=100;
    BiNode *S[MaxStackSize];
    int top= -1;   // 构造空栈,采用顺序栈,并假定不会发生上溢
    if(root == NULL) return;
    S[++top]=root;
    BiNode* lastpop = NULL;
    while(top!= -1)
    {
        while(S[top]->lchild != NULL)
            {
                top++;
                S[top]=S[top-1]->lchild;
            }
        while(top!= -1)
        {
            if(lastpop == S[top]->rchild || S[top]->rchild == NULL)
            {//判断上次弹出的结点是不是当前结点的右孩子,或者当前节点没有右孩子,因为访问次序是“左-右-中”。
                cout<data;
                lastpop = S[top--];
            }
            else if(S[top]->rchild != NULL)
            {
                top++;
                S[top]=S[top-1]->rchild;
                break;
            }
        }
    }
}
template
void Count(BiNode *root,int &n)  //n为全局量并已初始化为0
{//求二叉树结点个数
    if (root) {
         Count(root->lchild,n);
         n++;
         Count(root->rchild,n);
   }
}
template
int CountNodes(BiNode *root){//求二叉树结点个数
    int n=0;
    Count(root,n);
    return n;
    }
template
int num_of_nodes(BiNode *t)//求二叉树结点个数
{
    if(t == NULL)return 0;
    int nl=num_of_nodes(t->lchild);
    int nr=num_of_nodes(t->rchild);
    return 1+nl+nr;
}
template
void PreOrderleaf(BiNode *root)//前序遍历顺序输出二叉树叶子结点
{
    if (root) {
        if (!root->lchild && !root->rchild)
               cout<data;
        PreOrderleaf(root->lchild);
        PreOrderleaf(root->rchild);
   }
}
template
void InOrder0leaf(BiNode *root)
{   //非递归中序遍历顺序输出二叉树叶子结点
    const int MaxStackSize=100;
    BiNode *S[MaxStackSize];
    int top= -1;   // 构造空栈,采用顺序栈,并假定不会发生上溢
    while (root!=NULL||top!= -1)
     {
         while (root!= NULL)
         {

             S[++top]=root;;
             root=root->lchild;
         }
         if (top!= -1) {
             root=S[top--];
             if(!root->rchild && !root->lchild) cout<data;
             root=root->rchild;
         }
     }
}
template
int  Depth(BiNode *root)
{//求二叉树的高度
    if (root==NULL) return 0;
    else {
         int hl=Depth(root->lchild);
         int hr=Depth(root ->rchild);
         return hl>hr?hl+1:hr+1;
    }
}
template
int CountDC(BiNode *root)
//计算二叉树中有所有叶子结点的和。
{
if (root==NULL) return 0;
else{
       if (root->lchild==NULL&& root->rchild==NULL)
               return (int)(root->data);
       else
       return (CountDC(root->lchild)+CountDC(root->rchild));
   }
}

// 哈夫曼树的结点结构
struct element
{
    int weight;        // 权值域
    int lchild, rchild, parent;  // 该结点的左、右、双亲结点在数组中的下标
};
// 选取权值最小的两个结点
void selectMin(element a[],int n, int &s1, int &s2)
{
    for (int i = 0; i < n; i++)
    {
        if (a[i].parent == -1)// 初始化s1,s1的双亲为-1
        {
            s1 = i;
            break;
        }
    }
    for (int i = 0; i < n; i++)// s1为权值最小的下标
    {
        if (a[i].parent == -1 && a[s1].weight > a[i].weight)
            s1 = i;
    }
    for (int j = 0; j < n; j++)
    {
        if (a[j].parent == -1&&j!=s1)// 初始化s2,s2的双亲为-1
        {
            s2 = j;
            break;
        }
    }
    for (int j = 0; j < n; j++)// s2为另一个权值最小的结点
    {
        if (a[j].parent == -1 && a[s2].weight > a[j].weight&&j != s1)
            s2 = j;
    }
}
// 哈夫曼算法
// n个叶子结点的权值保存在数组w中
void HuffmanTree(element huftree[], int w[], int n)
{
    for (int i = 0; i < 2*n-1; i++)    // 初始化,所有结点均没有双亲和孩子
    {
        huftree[i].parent = -1;
        huftree[i].lchild = -1;
        huftree[i].rchild = -1;
    }
    for (int i = 0; i < n; i++)    // 构造只有根节点的n棵二叉树
    {
        huftree[i].weight = w[i];
    }
    for (int k = n; k < 2 * n - 1; k++) // n-1次合并
    {
        int i1, i2;
        selectMin(huftree, k, i1, i2); // 查找权值最小的俩个根节点,下标为i1,i2
        // 将i1,i2合并,且i1和i2的双亲为k
        huftree[i1].parent = k;
        huftree[i2].parent = k;
        huftree[k].lchild = i1;
        huftree[k].rchild = i2;
        huftree[k].weight = huftree[i1].weight + huftree[i2].weight;
    }

}
// 输出哈夫曼树
void print(element hT[],int n)
{
    cout << "index weight parent lChild rChild" << endl;
    cout << left;    // 左对齐输出
    for (int i = 0; i < n; ++i)
    {
        cout << setw(5) << i << " ";
        cout << setw(6) << hT[i].weight << " ";
        cout << setw(6) << hT[i].parent << " ";
        cout << setw(6) << hT[i].lchild << " ";
        cout << setw(6) << hT[i].rchild << endl;
    }
}

int main()
{    BiNode* root;
    BiTree bt; //创建一棵二叉树
    root = bt.Getroot( );  //获取指向根结点的指针
    cout<<"------前序遍历------ "<     bt.PreOrder(root);
    cout<     bt.PreOrder0(root);
    cout<     cout<<"------中序遍历------ "<     bt.InOrder(root);
    cout<     bt.InOrder0(root);
    cout<     cout<<"------后序遍历------ "<     bt.PostOrder(root);
    cout<     bt.PostOrder0(root);
    cout<     cout<<"------层序遍历------ "<     bt.LevelOrder(root);
    cout<     cout<<"Number of nodes="<     cout<<"Number of nodes="<     cout<<"Leaf-nodes are ";
    PreOrderleaf(root);
    cout<     InOrder0leaf(root);
    cout<

    BiTree bt1("ABD#EI##F##CG#H####"); //创建一棵二叉树
    //BiNode* root;  //获取指向根结点的指针
    root = bt1.Getroot( );

    cout<<"------前序遍历------ "<     bt1.PreOrder(root);
    cout<     bt1.PreOrder0(root);
    cout<     cout<<"------中序遍历------ "<     bt1.InOrder(root);
    cout<     bt1.InOrder0(root);
    cout<     cout<<"------后序遍历------ "<     bt1.PostOrder(root);
    cout<     bt1.PostOrder0(root);
    cout<     cout<<"------层序遍历------ "<     bt1.LevelOrder(root);
    cout<     /*n=0;
    Count(root);
    cout<<"Number of nodes="<     cout<<"Number of nodes="<     cout<<"Leaf-nodes are ";
    PreOrderleaf(root);
    cout<     InOrder0leaf(root);
    cout<     cout<

//    BiTree bt2("DBEAFC","ABDECF"); //创建一棵二叉树
    BiTree bt2("abdcef","dbacfe"); //创建一棵二叉树树
    root = bt2.Getroot( );  //获取指向根结点的指针
    cout<<"------前序遍历------ "<     bt2.PreOrder(root);    cout<     bt2.PreOrder0(root);    cout<     cout<<"------中序遍历------ "<     bt2.InOrder(root);    cout<     bt2.InOrder0(root);    cout<     cout<<"------后序遍历------ "<     bt2.PostOrder(root);cout<     bt2.PostOrder0(root);cout<     bt2.PostOrder1(root);cout<     cout<     cout<<"------层序遍历------ "<     bt2.LevelOrder(root);    cout<     cout<


    int x[] = { 5,29,7,8,14,23,3,11 };        // 权值集合
    element *hufftree=new element[2*8-1];    // 动态创建数组
    HuffmanTree(hufftree, x, 8);
    print(hufftree,15);

    return 0;
}

你可能感兴趣的:(数据结构课程笔记)