数据结构之二叉树的中序非递归遍历

导读:本篇文章讲解 数据结构之二叉树的中序非递归遍历,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

二叉树的中序非递归遍历

#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<stack>
#define ElemType int
#define maxsize 100
using namespace std;

typedef struct BiNode{
    ElemType data;
    struct BiNode* lchild;
    struct BiNode* rchild;
}BiNode,*BiTree;
int num=0;
 ElemType arr[19]={1,2,4,8,0,0,9,0,0,5,0,0,3,6,0,0,7,0,0};

//----------------二叉树的建立--------------------
BiTree Creat()
{
    ElemType x;
    BiTree bt;
    x=*(arr+num);
    num++;
    if(x==0)
        bt=NULL;
    else if(x>0)
    {
        bt=(BiNode*)malloc(sizeof(BiNode));
        bt->data=x;
        bt->lchild=Creat();
        bt->rchild=Creat();
    }
    else
        printf("输入错误\n");
    return bt;
}

//----------------中序非递归遍历二叉树---------------
void  InOrderwithoutRecursion(BiTree bt)
{
    if(bt==NULL)   //空树返回
    {
        printf("空树!\n");
        return ;
    }
    stack<BiNode*> s;
    //树非空
    BiTree p=bt;
    BiNode* q;
    while(p!=NULL||!s.empty())
    {
        if(p)
        {

            s.push(p);
            //GetStack(s);
            p=p->lchild;
        }
        else
        {
           // printf("else ");
            q=s.top();
            printf("%d ",q->data);
            s.pop();
            p=q->rchild;
        }
    }   //while
}
//----------------中序递归遍历二叉树-----------------
void InOrderTraverse(BiTree bt)
{
    if(bt)
    {
        InOrderTraverse(bt->lchild);
        printf("%d ",bt->data);
        InOrderTraverse(bt->rchild);
    }
}

//-----------------中序非递归遍历二叉树-----------------

int main()
{
    BiTree bt=Creat();
    printf("这是递归遍历!\n");
    InOrderTraverse(bt);
    printf("\n这是非递归遍历!\n");
    InOrderwithoutRecursion(bt);
}

这里写图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/10391.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!