非遞迴實現先序遍歷和中序遍歷

ProgramNovice發表於2020-12-20

先序建立二叉樹、非遞迴實現先序遍歷和中序遍歷、佇列實現層次遍歷

先序建立二叉樹,#表示空結點。
使用棧,實現非遞迴先序遍歷和中序遍歷。
使用佇列實現層次遍歷。

直接上程式碼,寒假完善註釋,甚至從頭到尾把《資料結構與演算法》的相關程式碼寫一遍。

#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<iostream>
using namespace std;

typedef char DataType;

#define MAXSIZE 100

typedef struct node
{
    DataType data;
    struct node *lchild;
    struct node *rchild;
}BiTreeNode,*BiTree;

//先序建立二叉樹
void CreateBiTree(BiTree &root)
{
    char c;
    cin>>c;
    if(c=='#')
    {
        root=NULL;
    }
    else
    {
        root=(BiTree)malloc(sizeof(BiTreeNode));
        root->data=c;
        CreateBiTree(root->lchild);
        CreateBiTree(root->rchild);
    }
}

//遞迴實現先序遍歷
void PreOrder(BiTree root)
{
    if(root!=NULL)
    {
        cout<<root->data<<" ";
        PreOrder(root->lchild);
        PreOrder(root->rchild);
    }
}

//遞迴實現中序遍歷
void InOrder(BiTree root)
{
    if(root!=NULL)
    {
        InOrder(root->lchild);
        cout<<root->data<<" ";
        InOrder(root->rchild);
    }
}

//遞迴實現後序遍歷
void PostOrder(BiTree root)
{
    if(root!=NULL)
    {
        PostOrder(root->lchild);
        PostOrder(root->rchild);
        cout<<root->data<<" ";
    }
}

//非遞迴實現先序遍歷
void NonPreOrder(BiTree root)
{
    BiTree S[MAXSIZE];
    BiTree p;
    int top=-1;
    S[++top]=root;
    while(top!=-1)
    {
        p=S[top--];
        cout<<p->data<<" ";
        if(p->rchild!=NULL) S[++top]=p->rchild;
        if(p->lchild!=NULL) S[++top]=p->lchild;
    }
}

//非遞迴實現中序遍歷
void NonInOrder(BiTree root)
{
    BiTree S[MAXSIZE];
    BiTree p=root;
    int top=-1;
    while(top!=-1 || p!=NULL)
    {
        while(p!=NULL)
        {
            S[++top]=p;
            p=p->lchild;
        }
        if(top!=-1)
        {
            p=S[top--];
            cout<<p->data<<" ";
            p=p->rchild;
        }
    }
}

//佇列實現層次遍歷
void LevelOrder(BiTree root)
{
    BiTree Queue[MAXSIZE];
    int front=-1;
    int rear=0;
    Queue[rear]=root;
    while(rear!=front)
    {
        cout<<Queue[++front]->data<<" ";
        if(Queue[front]->lchild) Queue[++rear]=Queue[front]->lchild;
        if(Queue[front]->rchild) Queue[++rear]=Queue[front]->rchild;
    }
}

//求二叉樹的深度
int Depth(BiTree root)
{
    if(root==NULL) return 0;
    else return max(Depth(root->lchild),Depth(root->rchild))+1;
}

int max(int a,int b)
{
    if(a>b) return a;
    else return b;
}

//求葉子結點的數量
int LeafCount(BiTree root)
{
    if(root==NULL) return 0;
    if(root->lchild==NULL && root->rchild==NULL) return 1;
    return LeafCount(root->lchild)+LeafCount(root->rchild);
}

//測試序列:ABD##E##CF###
int main()
{
    BiTree root;
    CreateBiTree(root);

    cout<<"二叉樹的深度: "<<Depth(root)<<endl;
    cout<<"二叉樹的葉子結點數: "<<LeafCount(root)<<endl;
    
    cout<<"遞迴先序遍歷: ";
    PreOrder(root);
    cout<<endl;
    cout<<"非遞迴先序遍歷: ";
    NonPreOrder(root);
    cout<<endl;

    cout<<"遞迴中序遍歷: ";
    InOrder(root);
    cout<<endl;
    cout<<"非遞迴中序遍歷: ";
    NonInOrder(root);
    cout<<endl;

    cout<<"遞迴後序遍歷: ";
    PostOrder(root);
    cout<<endl;

    cout<<"層次遍歷: ";
    LevelOrder(root);
    cout<<endl;

    system("pause");
    return 0;
}

相關文章