二叉树的其他算法

二叉树的其他算法:

描述
要求:

1.采用二叉链表的方式进行存储

2.构造一个二叉树类

实现以下算法:

1.统计树中节点个数

2.统计树中叶子节点个数

3.统计树的高度

4.二叉树左右子树的交换

#include<iostream>
using namespace std;
template <typename T>
struct BiNode
{
    T data;
    BiNode<T> *lchild,*rchild;

};
template <typename T>
class BiTree
{
private:
    BiNode<T>*root;
    BiNode<T>*Creat();
    void PreOrder(BiNode<T> *root);
    void InOrder(BiNode<T> *root);
    void PostOrder(BiNode<T> *root);
    int Count(BiNode<T> *root);
    int Height(BiNode<T> *root);
    int Leaf(BiNode<T> *root);
    void Change(BiNode<T> *root);
public:
    void PreOrder(){PreOrder(root);}
    BiTree(){root=Creat();}
    int Count(){return Count(root);}
    int Height(){return Height(root);}
    int Leaf(){return Leaf(root);}
    void Change(){Change(root);}
};
template <typename T>
BiNode<T>*BiTree<T>::Creat()
{
    BiNode<T> *root;
    char ch;
    cin>>ch;
    if(ch=='#') root=NULL;
    else
    {
        root=new BiNode<T>;
        root->data=ch;
        root->lchild=Creat();
        root->rchild=Creat();
    }
    return root;
}
template <typename T>
void BiTree<T>::PreOrder(BiNode<T> *root)
{
    if(root==NULL) return;
    else
    {
        cout<<root->data;
        PreOrder(root->lchild);
        PreOrder(root->rchild);
    }
}
template <typename T>
int BiTree<T>::Count(BiNode<T>*root)
{
    int num=0;
    if(root==NULL)return 0;
    num=Count(root->rchild)+Count(root->lchild)+1;
    return num;
}
template <typename T>
int BiTree<T>::Height(BiNode<T>*root)
{
    int lheight=0;
    int rheight=0;
    if(root==NULL)return 0;
    lheight=Height(root->lchild);
    rheight=Height(root->rchild);
    if(lheight>rheight)
        return lheight+1;
    else
        return rheight+1;
}
template <typename T>
int BiTree<T>::Leaf(BiNode<T>*root)
{
    int num=0;
    if(root==NULL)
    num=0;
    else  if(root->lchild==NULL&&root->rchild==NULL)
            num=1;
        else
        {
            num=Leaf(root->lchild)+Leaf(root->rchild);
        }
    return num;
}
template <typename T>
void BiTree<T>::Change(BiNode<T>*root)
{
    if(!root) return;
    Change(root->lchild);
    Change(root->rchild);
    BiNode<T>*a;
    a=root->lchild;
    root->lchild=root->rchild;
    root->rchild=a;
}
int main()
{
    string a;
    do
    {
    BiTree<char> ob;
    cout<<ob.Count();
    cout<<endl;
    cout<<ob.Leaf();
    cout<<endl;
    cout<<ob.Height();
    cout<<endl;
    ob.Change();
    ob.PreOrder();
    cout<<endl;
    cin>>a;
    }while (a!="N");
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

莫余

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值